unique_ptr operator=
會指派提供的位址unique_ptr至最新。
unique_ptr& operator=(
unique_ptr&& _Right
);
template<class Type2, Class Del2>
unique_ptr& operator=(
unique_ptr<Type, Del>&& _Right
);
unique_ptr& operator=(
pointer-type
);
參數
- A unique_ptr參考,用來將值指派給目前的unique_ptr。
備註
The member functions call reset(_Right.release()) and move _Right.stored_deleter to stored_deleter, then return *this.
需求
標頭: <memory>
Namespace: 標準