C++ Programming Question: Download C++ Programming PDF

What is the difference between a copy constructor and an overloaded assignment operator?

Tweet Share WhatsApp

Answer:

A copy constructor constructs a new object by using the content of the argument object. An overloaded assignment operator assigns the contents of an existing object to another existing object of the same class.

Download C++ Programming PDF Read All 120 C++ Programming Questions
Previous QuestionNext Question
What is a conversion constructor C++?When should you use multiple inheritance?