std::shared_ptr<T>::operator=

< cpp‎ | memory‎ | shared ptr
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
动态内存管理
智能指针
(C++11)
(C++11)
(C++11)
(C++17 前)
(C++11)
分配器
内存资源
未初始化存储
未初始化内存算法
有制约的未初始化内存算法
垃圾收集支持
杂项
(C++20)
(C++11)
(C++11)
C 库
低层内存管理
 
 
shared_ptr& operator=( const shared_ptr& r ) noexcept;
(1)
template< class Y >
shared_ptr& operator=( const shared_ptr<Y>& r ) noexcept;
(1)
shared_ptr& operator=( shared_ptr&& r ) noexcept;
(2)
template< class Y >
shared_ptr& operator=( shared_ptr<Y>&& r ) noexcept;
(2)
template< class Y >
shared_ptr& operator=( std::auto_ptr<Y>&& r );
(3) (C++11 中弃用)
(C++17 中移除)
template< class Y, class Deleter >
shared_ptr& operator=( std::unique_ptr<Y,Deleter>&& r );
(4)

r 所管理者替换被管理对象。

*this 已占有对象且它是最后一个占有该对象的 shared_ptr ,且 r*this 不相同,则通过占有的删除器销毁对象。

1) 共享 r 所管理对象的所有权。若 r 不管理对象,则 *this 亦不管理对象。等价于 shared_ptr<T>(r).swap(*this)

2) 从 r 移动赋值 shared_ptr 。赋值后, *this 含有先前 r 状态的副本,而 r 为空,等价于 shared_ptr<T>(std::move(r)).swap(*this)

3) 转移 r 所管理对象的所有权给 *this 。若 r 不管理对象,则 *this 亦不管理对象。赋值后, *this 含有先前 r 所保有的对象,且 use_count()==1 ;而 r 为空。等价于 shared_ptr<T>(r).swap(*this)

4) 转移 r 所管理对象的所有权给 *this 。为将来删除被管理对象,存储关联到 r 的删除器。调用后 r 不管理对象。等价于 shared_ptr<T>(std::move(r)).swap(*this)

参数

r - 要获得所有权或共享所有权的另一智能指针

返回值

*this

注意

实现可以满足要求而无需创建临时的 shared_ptr 对象。

异常

3) (无)

4) 可能抛异常

示例

参阅

替换所管理的对象
(公开成员函数)