Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      Copy assignment operator

      From cppreference.com
      <cpp‎ |language
       
       
      C++ language
      General topics
      Flow control
      Conditional execution statements
      Iteration statements (loops)
      Jump statements
      Functions
      Function declaration
      Lambda function expression
      inline specifier
      Dynamic exception specifications(until C++17*)
      noexcept specifier(C++11)
      Exceptions
      Namespaces
      Types
      Specifiers
      constexpr(C++11)
      consteval(C++20)
      constinit(C++20)
      Storage duration specifiers
      Initialization
      Expressions
      Alternative representations
      Literals
      Boolean -Integer -Floating-point
      Character -String -nullptr(C++11)
      User-defined(C++11)
      Utilities
      Attributes(C++11)
      Types
      typedef declaration
      Type alias declaration(C++11)
      Casts
      Memory allocation
      Classes
      Class-specific function properties
      Special member functions
      Templates
      Miscellaneous
       
       

      A copy assignment operator is a non-templatenon-static member function with the nameoperator= that can be called with an argument of the same class type and copies the content of the argument without mutating the argument.

      Contents

      [edit]Syntax

      For the formal copy assignment operator syntax, seefunction declaration. The syntax list below only demonstrates a subset of all valid copy assignment operator syntaxes.

      return-typeoperator=(parameter-list ); (1)
      return-typeoperator=(parameter-list )function-body (2)
      return-typeoperator=(parameter-list-no-default ) = default; (3)(since C++11)
      return-typeoperator=(parameter-list ) = delete; (4)(since C++11)
      return-typeclass-name ::operator=(parameter-list )function-body (5)
      return-typeclass-name ::operator=(parameter-list-no-default ) = default; (6)(since C++11)
      class-name - the class whose copy assignment operator is being declared, the class type is given asT in the descriptions below
      parameter-list - aparameter list of only one parameter, which is of typeT,T&,const T&,volatile T& orconstvolatile T&
      parameter-list-no-default - aparameter list of only one parameter, which is of typeT,T&,const T&,volatile T& orconstvolatile T& and does not have a default argument
      function-body - thefunction body of the copy assignment operator
      return-type - any type, butT& is favored in order to allow chaining asssignments

      [edit]Explanation

      1) Declaration of a copy assignment operator inside of class definition.
      2-4) Definition of a copy assignment operator inside of class definition.
      3) The copy assignment operator is explicitly-defaulted.
      4) The copy assignment operator is deleted.
      5,6) Definition of a copy assignment operator outside of class definition (the class must contain a declaration(1)).
      6) The copy assignment operator is explicitly-defaulted.
      struct X{    X& operator=(X& other);// copy assignment operator    X operator=(X other);// pass-by-value is allowed//  X operator=(const X other); // Error: incorrect parameter type}; union Y{// copy assignment operators can have syntaxes not listed above,// as long as they follow the general function declaration syntax// and do not viloate the restrictions listed aboveauto operator=(Y& other)-> Y&;// OK: trailing return type    Y& operator=(this Y& self, Y& other);// OK: explicit object parameter//  Y& operator=(Y&, int num = 1);        // Error: has other non-object parameters};

      The copy assignment operator is called whenever selected byoverload resolution, e.g. when an object appears on the left side of an assignment expression.

      [edit]Implicitly-declared copy assignment operator

      If no user-defined copy assignment operators are provided for a class type, the compiler will always declare one as aninlinepublic member of the class. This implicitly-declared copy assignment operator has the formT& T::operator=(const T&) if all of the following is true:

      • each direct baseB ofT has a copy assignment operator whose parameters areB orconst B& orconstvolatile B&;
      • each non-static data memberM ofT of class type or array of class type has a copy assignment operator whose parameters areM orconst M& orconstvolatile M&.

      Otherwise the implicitly-declared copy assignment operator is declared asT& T::operator=(T&).

      Due to these rules, the implicitly-declared copy assignment operator cannot bind to avolatile lvalue argument.

      A class can have multiple copy assignment operators, e.g. bothT& T::operator=(T&) andT& T::operator=(T).If some user-defined copy assignment operators are present, the user may still force the generation of the implicitly declared copy assignment operator with the keyworddefault.(since C++11)

      The implicitly-declared (or defaulted on its first declaration) copy assignment operator has an exception specification as described indynamic exception specification(until C++17)noexcept specification(since C++17)

      Because the copy assignment operator is always declared for any class, the base class assignment operator is always hidden. If ausing-declaration is used to bring in the assignment operator from the base class, and its argument type could be the same as the argument type of the implicit assignment operator of the derived class, the using-declaration is also hidden by the implicit declaration.

      [edit]Implicitly-defined copy assignment operator

      If the implicitly-declared copy assignment operator is neither deleted nor trivial, it is defined (that is, a function body is generated and compiled) by the compiler ifodr-used orneeded for constant evaluation(since C++14). For union types, the implicitly-defined copy assignment copies the object representation (as bystd::memmove). For non-union class types, the operator performs member-wise copy assignment of the object's direct bases and non-static data members, in their initialization order, using built-in assignment for the scalars, memberwise copy-assignment for arrays, and copy assignment operator for class types (called non-virtually).

      The implicitly-defined copy assignment operator for a classT isconstexpr if

      • T is aliteral type, and
      • the assignment operator selected to copy each direct base class subobject is a constexpr function, and
      • for each non-static data member ofT that is of class type (or array thereof), the assignment operator selected to copy that member is a constexpr function.
      (since C++14)
      (until C++23)

      The implicitly-defined copy assignment operator for a classT isconstexpr.

      (since C++23)


      The generation of the implicitly-defined copy assignment operator is deprecated ifT has a user-declared destructor or user-declared copy constructor.

      (since C++11)

      [edit]Deleted copy assignment operator

      An implicitly-declared or explicitly-defaulted(since C++11) copy assignment operator for classT isundefined(until C++11)defined as deleted(since C++11) if any of the following conditions is satisfied:

      • T has a non-static data member of a const-qualified non-class type (or possibly multi-dimensional array thereof).
      • T has a non-static data member of a reference type.
      • T has apotentially constructed subobject of class typeM (or possibly multi-dimensional array thereof) such that the overload resolution as applied to findM's copy assignment operator
      • does not result in a usable candidate, or
      • in the case of the subobject being avariant member, selects a non-trivial function.

      The implicitly-declared copy assignment operator for classT is defined as deleted ifT declares amove constructor ormove assignment operator.

      (since C++11)

      [edit]Trivial copy assignment operator

      The copy assignment operator for classT is trivial if all of the following is true:

      • it is not user-provided (meaning, it is implicitly-defined or defaulted);
      • T has no virtual member functions;
      • T has no virtual base classes;
      • the copy assignment operator selected for every direct base ofT is trivial;
      • the copy assignment operator selected for every non-static class type (or array of class type) member ofT is trivial.

      A trivial copy assignment operator makes a copy of the object representation as if bystd::memmove. All data types compatible with the C language (POD types) are trivially copy-assignable.

      [edit]Eligible copy assignment operator

      A copy assignment operator is eligible if it is either user-declared or both implicitly-declared and definable.

      (until C++11)

      A copy assignment operator is eligible if it is not deleted.

      (since C++11)
      (until C++20)

      A copy assignment operator is eligible if all following conditions are satisfied:

      (since C++20)

      Triviality of eligible copy assignment operators determines whether the class is atrivially copyable type.

      [edit]Notes

      If both copy and move assignment operators are provided, overload resolution selects the move assignment if the argument is anrvalue (either aprvalue such as a nameless temporary or anxvalue such as the result ofstd::move), and selects the copy assignment if the argument is anlvalue (named object or a function/operator returning lvalue reference). If only the copy assignment is provided, all argument categories select it (as long as it takes its argument by value or as reference to const, since rvalues can bind to const references), which makes copy assignment the fallback for move assignment, when move is unavailable.

      It is unspecified whether virtual base class subobjects that are accessible through more than one path in the inheritance lattice, are assigned more than once by the implicitly-defined copy assignment operator (same applies tomove assignment).

      Seeassignment operator overloading for additional detail on the expected behavior of a user-defined copy-assignment operator.

      [edit]Example

      Run this code
      #include <algorithm>#include <iostream>#include <memory>#include <string> struct A{int n;std::string s1;     A()=default;    A(Aconst&)=default; // user-defined copy assignment (copy-and-swap idiom)    A& operator=(A other){std::cout<<"copy assignment of A\n";std::swap(n, other.n);std::swap(s1, other.s1);return*this;}}; struct B: A{std::string s2;// implicitly-defined copy assignment}; struct C{std::unique_ptr<int[]> data;std::size_t size; // user-defined copy assignment (non copy-and-swap idiom)// note: copy-and-swap would always reallocate resources    C& operator=(const C& other){if(this!=&other)// not a self-assignment{if(size!= other.size)// resource cannot be reused{                data.reset(newint[other.size]);                size= other.size;}std::copy(&other.data[0],&other.data[0]+ size,&data[0]);}return*this;}}; int main(){    A a1, a2;std::cout<<"a1 = a2 calls ";    a1= a2;// user-defined copy assignment     B b1, b2;    b2.s1="foo";    b2.s2="bar";std::cout<<"b1 = b2 calls ";    b1= b2;// implicitly-defined copy assignment std::cout<<"b1.s1 = "<< b1.s1<<"; b1.s2 = "<< b1.s2<<'\n';}

      Output:

      a1 = a2 calls copy assignment of Ab1 = b2 calls copy assignment of Ab1.s1 = foo; b1.s2 = bar

      [edit]Defect reports

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

      DRApplied toBehavior as publishedCorrect behavior
      CWG 1353C++98the conditions where implicitly-declared copy assignment operators
      are undefined did not consider multi-dimensional array types
      consider these types
      CWG 2094C++11a volatile subobject made defaulted copy
      assignment operators non-trivial (CWG issue 496)
      triviality not affected
      CWG 2171C++11operator=(X&)=default was non-trivialmade trivial
      CWG 2180C++11a defaulted copy assignment operator for classT was not defined as deleted
      ifT is abstract and has non-copy-assignable direct virtual base classes
      the operator is defined
      as deleted in this case
      CWG 2595C++20a copy assignment operator was not eligible if there
      is another copy assignment operator which is more
      constrained but does not satisfy its associated constraints
      it can be eligible
      in this case

      [edit]See also

      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/language/copy_assignment&oldid=169520"

      [8]ページ先頭

      ©2009-2025 Movatter.jp