Briefly explain why copy constructors are needed in the world of computer programming.

      

Briefly explain why copy constructors are needed in the world of computer programming.

  

Answers


Davis
Copy constructors are needed when the programmer, must control precisely how a copy of an object is made.This is important only when the default bitwise copy creates undesired side effect.
Githiari answered the question on November 17, 2017 at 05:42


Next: Explain why using a default argument is related to function overloading
Previous: Describe the mistake with the following C++ computer code declaration? Int f(int a=0, double balance);

View More Computer Studies Questions and Answers | Return to Questions Index


Exams With Marking Schemes

Related Questions