次の方法で共有


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 に割り当てます。参照カウントがゼロに達すると、リソースが解放されます。失敗した場合、*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

参照

関連項目

shared_ptr クラス

shared_ptr::reset