Answers

Question and Answer:

  Home  C++ Constructors

⟩ Can you please explain the difference between copy constructor and an assignment operator?

A copy constructor is used to declare and initialize an object from another object.

E.g: integer I2(I1);

An assignment operator doesnot invoke the copy constructor. It simply assigns the values of an object to another, member by member.

 227 views

More Questions for you: