make shared_ptr not use delete(使 shared_ptr 不使用删除)
问题描述
在我的代码中,我希望 boost::shared_ptr 不调用 delete 而是调用 ptr->deleteMe() .
in my code i would like boost::shared_ptr not to call delete but call ptr->deleteMe() instead.
我还有一些 C 风格的函数返回一个 ptr.我可以让它调用 lib_freeXYZ(ptr);而不是试图删除?
Also i have a few C styled functions that return a ptr. Can i make it call lib_freeXYZ(ptr); instead of trying to delete?
推荐答案
或者如何使用 stl 提供包装函子 - Doug T. 描述但没有自定义调用者.
Or how about using the stl to provide the wrapper functor - Doug T. description but without the custom caller.
boost::shared_ptr<T> ptr( new T, std::mem_fun_ref(&T::deleteMe) );
boost::shared_ptr<S> ptr( new S, std::ptr_fun(lib_freeXYZ) );
这篇关于使 shared_ptr 不使用删除的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使 shared_ptr 不使用删除


基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01