When should intrusive_ptr be used instead of shared_ptr ?
|
|
When you already have a reference counter stored inside the object you're pointing to. |
|||||||
|
|
From Beyond the C++ Standard Library: An Introduction to Boost By Björn Karlsson
By using another of the Boost smart pointers, you ensure a consistent interface for all smart pointer needs, be they intrusive or not. The reference count must be provided by the classes that are used with intrusive_ptr. intrusive_ptr manages the reference count by making unqualified calls to two functions, intrusive_ptr_add_ref and intrusive_ptr_release; these functions must properly manipulate the intrusive reference count for intrusive_ptrs to work correctly. For all cases where a reference count already exists in the types that are to be used with intrusive_ptr, enabling support for intrusive_ ptr is as easy as implementing those two functions. Use intrusive_ptr when
|
||||
|
|