C++: "T a = b" -- copy constructor or assignment operator?

626 Views Asked by At

Assume T is a C++ class, and if I do T a = b;, is the copy constructor or assignment operator called?

My current experiment shows the copy constructor is called, but do not understand why.

#include <iostream>
using namespace std;

class T {
 public:
  // Default constructor.
  T() : x("Default constructor") { }
  // Copy constructor.
  T(const T&) : x("Copy constructor") { }
  // Assignment operator.
  T& operator=(const T&) { x = "Assignment operator"; }
  string x;
};

int main() {
  T a;
  T b = a;
  cout << "T b = a; " << b.x << "\n";
  b = a;
  cout << "b = a; " << b.x << "\n";
  return 0;
}

$ g++ test.cc
$ ./a.out
T b = a; Copy constructor
b = a; Assignment operator

Thanks!

2

There are 2 best solutions below

3
On BEST ANSWER

The copy constructor is called because

T a = b;

has the same effect as

T a(b);

It's an initialization, not an assignment. Long story short, it's just how the language works.

0
On
...

// The variable a does not exist before this point, therefore it is *conststructed*
T a = b; // Copy constructor is called

...

vs

...

T a;   // Default constructor is called

// a already exists, so assignment is used here
a = b; // assignment operator is called

...