boost::shared_ptr 的自定义删除器
查询:
在某些情况下,开发人员可能会遇到需要自定义boost::shared_ptr的删除过程的行为。考虑以下目标:
解决方案:
使用标准模板库 (STL) 为这些要求提供了可行的解决方案:
<code class="cpp">// Custom deleter for shared_ptr that invokes ptr->deleteMe() boost::shared_ptr<T> ptr(new T, std::mem_fun_ref(&T::deleteMe)); // Custom deleter for shared_ptr that invokes lib_freeXYZ(ptr) boost::shared_ptr<S> ptr(new S, std::ptr_fun(lib_freeXYZ));</code>
此方法允许对两个 boost::shared_ptr 实例的删除过程进行所需的自定义。
以上是如何自定义`boost::shared_ptr`的删除过程?的详细内容。更多信息请关注PHP中文网其他相关文章!