std::shared_ptr<T>::~shared_ptr
来自 cppreference.com
< cpp | memory | shared ptr
~shared_ptr(); |
||
如果 *this 拥有一个对象,并且它是拥有该对象的最后一个 shared_ptr
,则该对象将通过所拥有的删除器销毁。
销毁后,如果存在与 *this 共享所有权的智能指针,它们的 use_count() 将比以前的值少一个。
[编辑] 注释
与 std::unique_ptr 不同,std::shared_ptr 的删除器即使在管理指针为空时也会被调用。
[编辑] 示例
运行此代码
#include <iostream> #include <memory> struct S { S() { std::cout << "S::S()\n"; } ~S() { std::cout << "S::~S()\n"; } struct Deleter { void operator()(S* s) const { std::cout << "S::Deleter()\n"; delete s; } }; }; int main() { auto sp = std::shared_ptr<S>{new S, S::Deleter{}}; auto use_count = [&sp](char c) { std::cout << c << ") use_count(): " << sp.use_count() << '\n'; }; use_count('A'); { auto sp2 = sp; use_count('B'); { auto sp3 = sp; use_count('C'); } use_count('D'); } use_count('E'); // sp.reset(); // use_count('F'); // would print "F) use_count(): 0" }
输出
S::S() A) use_count(): 1 B) use_count(): 2 C) use_count(): 3 D) use_count(): 2 E) use_count(): 1 S::Deleter() S::~S()
[编辑] 另请参阅
销毁 weak_ptr ( std::weak_ptr<T> 的公共成员函数) |