unique_ptr operator=
Přiřadí adresu zadané unique_ptr na aktuální.
unique_ptr& operator=(
unique_ptr&& _Right
);
template<class Type2, Class Del2>
unique_ptr& operator=(
unique_ptr<Type, Del>&& _Right
);
unique_ptr& operator=(
pointer-type
);
Parametry
- A unique_ptr odkaz lze přiřadit hodnotu aktuální unique_ptr.
Poznámky
The member functions call reset(_Right.release()) and move _Right.stored_deleter to stored_deleter, then return *this.
Požadavky
Záhlaví: <memory>
Obor názvů: std
Viz také
Referenční dokumentace
Bezpečnostní vlákno v Standardní knihovna C++