A smart pointer with reference-counted copy semantics. More...
A smart pointer with reference-counted copy semantics.
The object pointed to is deleted when the last shared_ptr pointing to it is destroyed or reset.
Definition at line 91 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | ) | [inline] |
Construct an empty shared_ptr.
Definition at line 98 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | _Tp1 * | __p | ) | [inline, explicit] |
Construct a shared_ptr that owns the pointer __p.
__p | A pointer that is convertible to element_type*. |
std::bad_alloc,in | which case delete __p is called. |
Definition at line 107 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | _Tp1 * | __p, | |
_Deleter | __d | |||
) | [inline] |
Construct a shared_ptr that owns the pointer __p and the deleter __d.
__p | A pointer. | |
__d | A deleter. |
std::bad_alloc,in | which case __d(__p) is called. |
Requirements: _Deleter's copy constructor and destructor must not throw
__shared_ptr will release __p by calling __d(__p)
Definition at line 123 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | _Tp1 * | __p, | |
_Deleter | __d, | |||
const _Alloc & | __a | |||
) | [inline] |
Construct a shared_ptr that owns the pointer __p and the deleter __d.
__p | A pointer. | |
__d | A deleter. | |
__a | An allocator. |
std::bad_alloc,in | which case __d(__p) is called. |
Requirements: _Deleter's copy constructor and destructor must not throw _Alloc's copy constructor and destructor must not throw.
__shared_ptr will release __p by calling __d(__p)
Definition at line 141 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | const shared_ptr< _Tp1 > & | __r, | |
_Tp * | __p | |||
) | [inline] |
Constructs a shared_ptr instance that stores __p and shares ownership with __r.
__r | A shared_ptr. | |
__p | A pointer that will remain valid while *__r is valid. |
This can be used to construct a shared_ptr
to a sub-object of an object managed by an existing shared_ptr
.
shared_ptr< pair<int,int> > pii(new pair<int,int>());
shared_ptr<int> pi(pii, &pii->first);
assert(pii.use_count() == 2);
Definition at line 163 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | const shared_ptr< _Tp1 > & | __r | ) | [inline] |
If __r is empty, constructs an empty shared_ptr; otherwise construct a shared_ptr that shares ownership with __r.
__r | A shared_ptr. |
Definition at line 174 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | shared_ptr< _Tp > && | __r | ) | [inline] |
Move-constructs a shared_ptr instance from __r.
__r | A shared_ptr rvalue. |
Definition at line 181 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | shared_ptr< _Tp1 > && | __r | ) | [inline] |
Move-constructs a shared_ptr instance from __r.
__r | A shared_ptr rvalue. |
Definition at line 190 of file shared_ptr.h.
std::shared_ptr< _Tp >::shared_ptr | ( | const weak_ptr< _Tp1 > & | __r | ) | [inline, explicit] |
Constructs a shared_ptr that shares ownership with __r and stores a copy of the pointer stored in __r.
__r | A weak_ptr. |
bad_weak_ptr | when __r.expired(), in which case the constructor has no effect. |
Definition at line 202 of file shared_ptr.h.
shared_ptr<_Tp1> allocate_shared | ( | _Alloc | __a, | |
_Args &&... | __args | |||
) | [friend] |
Create an object that is owned by a shared_ptr.
__a | An allocator. | |
__args | Arguments for the _Tp object's constructor. |
An | exception thrown from _Alloc::allocate or from the constructor of _Tp. |
A copy of __a will be used to allocate memory for the shared_ptr and the new object.
Definition at line 452 of file shared_ptr.h.