shared_ptr::operator=
소유한 리소스를 바꿉니다.
shared_ptr& operator=(const shared_ptr& sp);
template<class Other>
shared_ptr& operator=(const shared_ptr<Other>& sp);
template<class Other>
shared_ptr& operator=(auto_ptr<Other>& ap);
template<class Other>
shared_ptr& operator=(auto_ptr<Other>& ap);
template<class Other>
shared_ptr& operator=(auto_ptr<Other>&& ap);
template<class Other, class Deletor>
shared_ptr& operator=(unique_ptr<Other, Deletor>&& ap);
매개 변수
sp
복사할 공유 포인터입니다.ap
복사할 자동 포인터입니다.
설명
모든 연산자는 현재 소유한 리소스에 대 한 참조 횟수 감소 *this 피연산자 시퀀스에 의해 명명 된 리소스의 소유권을 할당 하 고 *this.참조 횟수가 0으로 떨어지면 리소스가 해제 됩니다.운영자 나뭇잎 실패할 경우 *this 변경 되지 않습니다.
예제
// std_tr1__memory__shared_ptr_operator_as.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
int main()
{
std::shared_ptr<int> sp0;
std::shared_ptr<int> sp1(new int(5));
std::auto_ptr<int> ap(new int(10));
sp0 = sp1;
std::cout << "*sp0 == " << *sp0 << std::endl;
sp0 = ap;
std::cout << "*sp0 == " << *sp0 << std::endl;
return (0);
}
요구 사항
헤더: <memory>
네임 스페이스: std