允许多个shared_ptr对象通过引用计数器管理同一块堆内存。
堆内存释放条件:
引用计数器为0时,在shared_ptr析构函数中释放堆内存
调用成员函数operator=或者reset被其他指针替代时
线程安全性:
shared_ptr并不是所有的操作都是线程安全的,访问非const函数依然会发生数据竞争。
C++11提供了std:atomic_is_lock_free、std::atomic_load等系列原子操作
C++20里面提供了std::atomic<shared_ptr<T>>解决数据竞争问题
使用一个shared_ptr管理的指针去初始化另一个shared_ptr将导致不明确行为
int* pint = new int(12);
std::shared_ptr<int> pshared(pint);
std::weak_ptr由std::shared_ptr构造出来
std::weak_ptr.reset释放管理对象的真实内存
std::weak_ptr.use_count() 返回std::shared_ptr所管理对象的引用数量
std::weak_ptr.expired() 返回std::shared_ptr所管理对象是不是已经被析构
std::weak_ptr.lock() 返回std::shared_ptr对象
C++ shared_ptr
最新推荐文章于 2024-09-21 22:35:36 发布