Namespaces
Variants

cpp/language/copy assignment: Difference between revisions

From cppreference.com
Space Mission (talk | contribs)
m Example: Added defaulted ctors to suppress warnings (gcc) ~ "implicitly-declared 'A::A(const A&)' is deprecated".
Space Mission (talk | contribs)
m Notes: shorter
 
(29 intermediate revisions by 8 users not shown)
Line 2: Line 2:
{{cpp/language/classes/navbar}}
{{cpp/language/classes/navbar}}


A copy assignment operator of class {{tt|T}} is a non-template {{rlp|member functions|non-static member function}} with the name {{c|operator{{=}}}} that takes exactly one parameter of type {{c|T}}, {{c|T&}}, {{c|const T&}}, {{c|volatile T&}}, or {{c|const volatile T&}}. For a type to be {{named req|CopyAssignable}}, it must have a public copy assignment operator.
A copy assignment operator is a non-template {{rlp|member functions|non-static member function}} with the name {{c|operator=}} that of type .


===Syntax===
===Syntax===
{{sdsc begin}}
{{sdsc begin}}
{{sdsc |num=1| {{spar|class_name}} {{ttb|&}} {{spar|class_name}} {{ttb|::}} {{ttb|operator{{=}}}} ( {{spar|class_name}} ) }}  
{{sdsc|num=1|{{spar|}} {{ttb|}}{{spar |}}{{ttb|
{{sdsc |num=2| {{spar|class_name}} {{ttb|&}} {{spar|class_name}} {{ttb|::}} {{ttb|operator{{=}}}} ( {{ttb|const}} {{spar|class_name}} {{tt|&}} ) }}  
}} {{ttb|operator{{}}}} {{spar|}}}}
{{sdsc |num=3|notes={{mark since c++11}}| {{spar|class_name}} {{ttb|&}} {{spar|class_name}} {{ttb|::}} {{ttb|operator{{=}}}} ( {{ttb|const}} {{spar|class_name}} {{tt|&}} ) {{=}} {{c|default;}} }}
{{sdsc|num=|{{spar|}} {{ttb|}}{{spar |}}{{ttb|}}|{{}}}}
{{sdsc |num=4|notes={{mark since c++11}}| {{spar|class_name}} {{ttb|&}} {{spar|class_name}} {{ttb|::}} {{ttb|operator{{=}}}} ( {{ttb|const}} {{spar|class_name}} {{tt|&}} ) {{=}} {{c|delete;}} }}
{{|{{spar|}} {{|}}}}{{|= |notes={{mark since c++11}}
{{|{{|}} {{spar |}}{{ttb|::}}{{ttb|operator=(}}{{spar |}}{{|)}} {{|}}}}
{{sdsc|num=|{{spar|}} {{spar |}}{{ttb|::}}{{ttb|operator=(}}{{spar |}}{{|) = }}{{c}}}}
{{sdsc end}}
{{sdsc end}}


===Explanation===
===Explanation===
@1@ Typical declaration of a copy assignment operator when {{rlp|operators#Assignment_operator|copy-and-swap idiom}} is used.
@1@ of a copy assignment operator .
@2@ Typical declaration of a copy assignment operator when copy-and-swap idiom is not used.
@2@ of a copy assignment operator
@3@ Forcing a copy assignment operator to be generated by the compiler.
copy -
@4@ Avoiding implicit copy assignment.
is .
@@ a copy assignment operator the .
@@ copy assignment .
 
 


The copy assignment operator is called whenever selected by {{rlp|overload resolution}}, e.g. when an object appears on the left side of an assignment expression.
The copy assignment operator is called whenever selected by {{rlp|overload resolution}}, e.g. when an object appears on the left side of an assignment expression.


===Implicitly-declared copy assignment operator===
===Implicitly-declared copy assignment operator===
If no user-defined copy assignment operators are provided for a class type ({{c|struct}}, {{c|class}}, or {{c|union}}), the compiler will always declare one as an inline public member of the class. This implicitly-declared copy assignment operator has the form {{c|1=T& T::operator=(const T&)}} if all of the following is true:
If no user-defined copy assignment operators are provided for a class type, the compiler will always declare one as an inline publicmember of the class. This implicitly-declared copy assignment operator has the form {{c|1=T& T::operator=(const T&)}} if all of the following is true:
* each direct base {{tt|B}} of {{tt|T}} has a copy assignment operator whose parameters are {{c|B}} or {{c|const B&}} or {{c|const volatile B&}};
* each direct base {{tt|B}} of {{tt|T}} has a copy assignment operator whose parameters are {{|B}} or {{c|const B&}} or {{c|const volatile B&}};
* each non-static data member {{tt|M}} of {{tt|T}} of class type or array of class type has a copy assignment operator whose parameters are {{c|M}} or {{c|const M&}} or {{c|const volatile M&}}.
* each non-static data member {{tt|M}} of {{tt|T}} of class type or array of class type has a copy assignment operator whose parameters are {{|M}} or {{c|const M&}} or {{c|const volatile M&}}.
Otherwise the implicitly-declared copy assignment operator is declared as {{c|1=T& T::operator=(T&)}}. (Note that due to these rules, the implicitly-declared copy assignment operator cannot bind to a volatile lvalue argument.)
Otherwise the implicitly-declared copy assignment operator is declared as {{c|1=T& T::operator=(T&)}}.


A class can have multiple copy assignment operators, e.g. both {{c|1=T& T::operator=(T&)}} and {{c|1=T& T::operator=(T)}}. {{rev inl|since=c++11|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 keyword {{tt|default}}.}}
, the implicitlydeclared copy assignment operator {{|}} .


The implicitly-declared (or defaulted on its first declaration) copy assignment operator has an exception specification as described in {{rev inl|until=c++17|{{rlp|except_spec|dynamic exception specification}}}}{{rev inl|since=c++17|{{rlp|noexcept_spec|exception specification}}}}
 
The implicitly-declared (or defaulted on its first declaration) copy assignment operator has an exception specification as described in {{rev inl|until=c++17|{{rlp||dynamic exception specification}}}}{{rev inl|since=c++17|{{rlp||specification}}}}


Because the copy assignment operator is always declared for any class, the base class assignment operator is always hidden. If a {{rlp|using declaration#In class definition|using-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.
Because the copy assignment operator is always declared for any class, the base class assignment operator is always hidden. If a {{rlp|using declaration#In class definition|using-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.


===Deleted implicitly-declared copy assignment operator===
===
A implicitly-declared copy assignment operator for class {{tt|T}} is defined as ''deleted'' if any of the following is true:
implicitly-declared copy assignment operator =
* {{tt|T}} has a user-declared move constructor;
 
* {{tt|T}} has a user-declared move assignment operator.
==
Otherwise, it is defined as defaulted.
implicitly-copy assignment operator for class {{tt|T}} is if
* {{tt|T}} a
* {{tt|T}} a
-assignment operator .


A defaulted copy assignment operator for class {{tt|T}} is defined as ''deleted'' if any of the following is true:
 
* {{tt|T}} has a non-static data member of non-class type (or array thereof) that is {{c|const}};
* {{tt|T}} has a non-static data member of a reference type;
* {{tt|T}} has a non-static data member or a direct or virtual base class that cannot be copy-assigned (overload resolution for the copy assignment fails, or selects a deleted or inaccessible function);
* {{tt|T}} is a {{rlp|union#Union-like classes|union-like class}}, and has a variant member whose corresponding assignment operator is non-trivial.
 
defaultedcopy assignment operator for class {{tt|T}} is defined as deletedif any of the following is :
* {{tt|T}} has a non-static data member of non-class type (or array thereof)
* {{tt|T}} has a non-static data member of a reference type
* {{tt|T}} has a -that overload resolution copy assignment
, or
selects a function
 
{{tt|T}} is a {{rlp|}} assignment operator.


===Trivial copy assignment operator===
===Trivial copy assignment operator===
The copy assignment operator for class {{tt|T}} is trivial if all of the following is true:
The copy assignment operator for class {{tt|T}} is trivial if all of the following is true:
* it is not user-provided (meaning, it is implicitly-defined or defaulted){{mark unreviewed dr|CWG|2171}};
* it is not user-provided (meaning, it is implicitly-defined or defaulted);
* {{tt|T}} has no virtual member functions;
* {{tt|T}} has no virtual member functions;
* {{tt|T}} has no virtual base classes;
* {{tt|T}} has no virtual base classes;
Line 55: Line 105:


===Eligible copy assignment operator===
===Eligible copy assignment operator===
{{rrev multi|rev1=
{{eligible |copy assignment operator}}
A copy assignment operator is eligible if it is either user-declared or both implicitly-declared and definable.
|since2=c++11|rev2=
A copy assignment operator is eligible if it is not deleted.
|since3=c++20|rev3=
A copy assignment operator is eligible if
* it is not deleted, and
* its {{rlp|constraints|associated constraints}}, if any, are satisfied, and
* no copy assignment operator with the same first parameter type and the same cv/ref-qualifiers (if any) is {{rlp|constraints#Partial ordering of constraints|more constrained}} than it.
}}


Triviality of eligible copy assignment operators determines whether the class is a [[cpp/named req/TriviallyCopyable|trivially copyable type]].
Triviality of eligible copy assignment operators determines whether the class is a [[cpp/named req/TriviallyCopyable|trivially copyable type]].
===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 if {{rlp|definition#ODR-use|odr-used}}{{rev inl|since=c++11|<!-- P0859R0 --> or {{rlp|constant expression#Functions and variables needed for constant evaluation|needed for constant evaluation}}}}. For {{c|union}} types, the implicitly-defined copy assignment copies the object representation (as by {{lc|std::memmove}}). For non-union class types ({{c|class}} and {{c|struct}}), the operator performs member-wise copy assignment of the object's bases and non-static members, in their initialization order, using built-in assignment for the scalars and copy assignment operator for class types.
{{rrev|since=c++11|
The generation of the implicitly-defined copy assignment operator is deprecated if {{tt|T}} has a user-declared destructor or user-declared copy constructor.
}}


===Notes===
===Notes===
If both copy and move assignment operators are provided, overload resolution selects the move assignment if the argument is an {{rlp|value category|''rvalue''}} (either a {{rlp|value category|''prvalue''}} such as a nameless temporary or an {{rlp|value category|''xvalue''}} such as the result of {{lc|std::move}}), and selects the copy assignment if the argument is an {{rlp|value category|''lvalue''}} (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.
If both copy and move assignment operators are provided, overload resolution selects the move assignment if the argument is an {{rlp|value category|rvalue}} (either a {{rlp|value category|prvalue}} such as a nameless temporary or an {{rlp|value category|xvalue}} such as the result of {{|move}}), and selects the copy assignment if the argument is an {{rlp|value category|lvalue}} (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 to {{rlp|move assignment}}).
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 to {{rlp|move assignment}}).


See {{rlp|operators#Assignment_operator|assignment operator overloading}} for additional detail on the expected behavior of a user-defined copy-assignment operator.
See {{rlp|operators#|assignment operator overloading}} for additional detail on the expected behavior of a user-defined copy-assignment operator.


===Example===
===Example===
{{example
{{example
| code=
|code=
#include <iostream>
#include <iostream>
#include <memory>
#include <memory>
#include <string>
#include <string>
#include <algorithm>


struct A
struct A
Line 94: Line 128:
     int n;
     int n;
     std::string s1;
     std::string s1;
     A() = default;
     A() = default;
     A(A const&) = default;
     A(A const&) = default;
     // user-defined copy assignment (copy-and-swap idiom)
     // user-defined copy assignment (copy-and-swap idiom)
     A& operator=(A other)
     A& operator=(A other)
Line 116: Line 152:
     std::unique_ptr<int[]> data;
     std::unique_ptr<int[]> data;
     std::size_t size;
     std::size_t size;
     // user-defined copy assignment (non copy-and-swap idiom)
     // user-defined copy assignment (non copy-and-swap idiom)
     // note: copy-and-swap would always reallocate resources
     // note: copy-and-swap would always reallocate resources
Line 144: Line 181:
     std::cout << "b1 = b2 calls ";
     std::cout << "b1 = b2 calls ";
     b1 = b2; // implicitly-defined copy assignment
     b1 = b2; // implicitly-defined copy assignment
     std::cout << "b1.s1 = " << b1.s1 << "; b1.s2 = " << b1.s2 << '\n';
     std::cout << "b1.s1 = " << b1.s1 << "; b1.s2 = " << b1.s2 << '\n';
}
}
| output=
|output=
a1 = a2 calls copy assignment of A
a1 = a2 calls copy assignment of A
b1 = b2 calls copy assignment of A
b1 = b2 calls copy assignment of A
Line 154: Line 192:
===Defect reports===
===Defect reports===
{{dr list begin}}
{{dr list begin}}
{{dr list item|wg=cwg|dr=2094|std=C++11|before=a volatile subobject made defaulted copy assignment operators non-trivial (CWG 496)|after=triviality not affected}}
{{dr list item|wg=cwg|dr=2094|std=C++11|before=a volatile subobject made defaulted copyassignment operators non-trivial (496)|after=triviality not affected}}
{{dr list item|wg=cwg|dr=2171|std=C++11|before={{c|1=operator=(X&) = default}} was non-trivial|after=made trivial}}
{{dr list item|wg=cwg|dr=2171|std=C++11|before={{c|1=operator=(X&) = default}} was non-trivial|after=made trivial}}
{{dr list end}}
{{dr list end}}


===See also===
===See also===
* {{rlp | converting constructor}}
* {{rlp|converting constructor}}
* {{rlp | copy constructor}}
* {{rlp|copy constructor}}
* {{rlp | copy elision}}
* {{rlp|copy elision}}
* {{rlp | default constructor}}
* {{rlp|default constructor}}
* {{rlp | destructor}}
* {{rlp|destructor}}
* {{rlp | explicit}}
* {{|explicit}}
* {{rlp | initialization}}
* {{rlp|initialization}}
** {{rlp | aggregate initialization}}
** {{rlp|aggregate initialization}}
** {{rlp | constant initialization}}
** {{rlp|constant initialization}}
** {{rlp | copy initialization}}
** {{rlp|copy initialization}}
** {{rlp | default initialization}}
** {{rlp|default initialization}}
** {{rlp | direct initialization}}
** {{rlp|direct initialization}}
** {{rlp | initializer list}}
** {{rlp|initializer list}}
** {{rlp | list initialization}}
** {{rlp|list initialization}}
** {{rlp | reference initialization}}
** {{rlp|reference initialization}}
** {{rlp | value initialization}}
** {{rlp|value initialization}}
** {{rlp | zero initialization}}
** {{rlp|zero initialization}}
* {{rlp | move assignment}}
* {{rlp|move assignment}}
* {{rlp | move constructor}}
* {{rlp|move constructor}}
* {{rlp | new}}
* {{|new}}


{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}

Latest revision as of 23:13, 2 February 2024

 
 
C++ language
General topics
Flow control
Conditional execution statements
if
Iteration statements (loops)
for
range-for (C++11)
Jump statements
Functions
Function declaration
Lambda function expression
inline specifier
Dynamic exception specifications (until C++17*)
noexcept specifier (C++11)
Exceptions
Namespaces
Types
Specifiers
const/volatile
decltype (C++11)
auto (C++11)
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
explicit (C++11)
static

Special member functions
Templates
Miscellaneous
 
 

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

Syntax

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

return-type operator=(parameter-list ); (1)
return-type operator=(parameter-list ) function-body (2)
return-type operator=(parameter-list-no-default ) = default; (3) (since C++11)
return-type operator=(parameter-list ) = delete; (4) (since C++11)
return-type class-name ::operator=(parameter-list ) function-body (5)
return-type class-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 as T in the descriptions below
parameter-list - a parameter list of only one parameter, which is of type T, T&, const T&, volatile T& or const volatile T&
parameter-list-no-default - a parameter list of only one parameter, which is of type T, T&, const T&, volatile T& or const volatile T& and does not have a default argument
function-body - the function body of the copy assignment operator
return-type - any type, but T& is favored in order to allow chaining asssignments

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 above
    auto 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 by overload resolution, e.g. when an object appears on the left side of an assignment expression.

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 an inline public member of the class. This implicitly-declared copy assignment operator has the form T& T::operator=(const T&) if all of the following is true:

  • each direct base B of T has a copy assignment operator whose parameters are B or const B& or const volatile B&;
  • each non-static data member M of T of class type or array of class type has a copy assignment operator whose parameters are M or const M& or const volatile M&.

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

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

A class can have multiple copy assignment operators, e.g. both T& T::operator=(T&) and T& 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 keyword default.(since C++11)

The implicitly-declared (or defaulted on its first declaration) copy assignment operator has an exception specification as described in dynamic 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 a using-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.

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 if odr-used or needed for constant evaluation(since C++14). For union types, the implicitly-defined copy assignment copies the object representation (as by std::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 class T is constexpr if

  • T is a literal type, and
  • the assignment operator selected to copy each direct base class subobject is a constexpr function, and
  • for each non-static data member of T 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 class T is constexpr.

(since C++23)


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

(since C++11)

Deleted copy assignment operator

An implicitly-declared or explicitly-defaulted(since C++11) copy assignment operator for class T is undefined(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 a potentially constructed subobject of class type M (or possibly multi-dimensional array thereof) such that the overload resolution as applied to find M's copy assignment operator
  • does not result in a usable candidate, or
  • in the case of the subobject being a variant member, selects a non-trivial function.

The implicitly-declared copy assignment operator for class T is defined as deleted if T declares a move constructor or move assignment operator.

(since C++11)

Trivial copy assignment operator

The copy assignment operator for class T 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 of T is trivial;
  • the copy assignment operator selected for every non-static class type (or array of class type) member of T is trivial.

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

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 a trivially copyable type.

Notes

If both copy and move assignment operators are provided, overload resolution selects the move assignment if the argument is an rvalue (either a prvalue such as a nameless temporary or an xvalue such as the result of std::move), and selects the copy assignment if the argument is an lvalue (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 to move assignment).

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

Example

#include <algorithm>
#include <iostream>
#include <memory>
#include <string>

struct A
{
    int n;
    std::string s1;
    
    A() = default;
    A(A const&) = 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(new int[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 A
b1 = b2 calls copy assignment of A
b1.s1 = foo; b1.s2 = bar

Defect reports

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

DR Applied to Behavior as published Correct behavior
CWG 1353 C++98 the conditions where implicitly-declared copy assignment operators
are undefined did not consider multi-dimensional array types
consider these types
CWG 2094 C++11 a volatile subobject made defaulted copy
assignment operators non-trivial (CWG issue 496)
triviality not affected
CWG 2171 C++11 operator=(X&) = default was non-trivial made trivial
CWG 2180 C++11 a defaulted copy assignment operator for class T was not defined as deleted
if T is abstract and has non-copy-assignable direct virtual base classes
the operator is defined
as deleted in this case
CWG 2595 C++20 a 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

See also