unique_ptr operator=
Atribui o endereço de fornecida unique_ptr à atual.
unique_ptr& operator=(
unique_ptr&& _Right
);
template<class Type2, Class Del2>
unique_ptr& operator=(
unique_ptr<Type, Del>&& _Right
);
unique_ptr& operator=(
pointer-type
);
Parâmetros
- A unique_ptr referência usada para atribuir o valor do atual unique_ptr.
Comentários
The member functions call reset(_Right.release()) and move _Right.stored_deleter to stored_deleter, then return *this.
Requisitos
Cabeçalho: <memory>
Namespace: std
Consulte também
Referência
Segurança do thread na biblioteca C++ padrão