Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::auto_ptr<T>::operator=

      From cppreference.com
      <cpp‎ |memory‎ |auto ptr
       
       
      Memory management library
      (exposition only*)
      Allocators
      Uninitialized memory algorithms
      Constrained uninitialized memory algorithms
      Memory resources
      Uninitialized storage(until C++20)
      (until C++20*)
      (until C++20*)
      Garbage collector support(until C++23)
      (C++11)(until C++23)
      (C++11)(until C++23)
      (C++11)(until C++23)
      (C++11)(until C++23)
      (C++11)(until C++23)
      (C++11)(until C++23)
       
       
      auto_ptr& operator=( auto_ptr& r)throw();
      (1)(deprecated in C++11)
      (removed in C++17)
      template<class Y>
      auto_ptr& operator=( auto_ptr<Y>& r)throw();
      (2)(deprecated in C++11)
      (removed in C++17)
      auto_ptr& operator=( auto_ptr_ref<T> m)throw();
      (3)(deprecated in C++11)
      (removed in C++17)

      Replaces the managed object with the one managed byr orm.

      1) Effectively callsreset(r.release()).
      2) Effectively callsreset(r.release()).Y* must be implicitly convertible toT*.
      3) Effectively callsreset(m.release()).auto_ptr_ref is an implementation-defined type that holds a reference toauto_ptr.std::auto_ptr is implicitlyconvertible to andfrom this type. The implementation is allowed to provide the template with a different name or implement equivalent functionality in other ways.

      Contents

      [edit]Parameters

      r - anotherauto_ptr to transfer the ownership of the object from
      m - an object of implementation-defined type that holds a reference toauto_ptr

      [edit]Return value

      *this.

      [edit]Notes

      The constructor and the copy assignment operator fromauto_ptr_ref is provided to allow copy-constructing and assigningstd::auto_ptr from nameless temporaries. Since its copy constructor and copy assignment operator take the argument as non-const reference, they cannot bind rvalue arguments directly. However, auser-defined conversion can be executed (which releases the originalauto_ptr), followed by a call to the constructor or copy-assignment operator that takeauto_ptr_ref by value. This is an early implementation ofmove semantics.

      [edit]Defect reports

      The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 127C++98auto_ptr was not assignable fromauto_ptr_refadded overload (3)
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/memory/auto_ptr/operator%3D&oldid=154306"

      [8]ページ先頭

      ©2009-2025 Movatter.jp