C++ Constructors Question: Download C++ Constructors PDF

What is shallow?

Tweet Share WhatsApp

Answer:

A shallow copy just copies the values of the data as they are. Even if there is a pointer that points to dynamically allocated memory, the pointer in the copy will point to the same dynamically allocated object.

Download C++ Constructors PDF Read All 51 C++ Constructors Questions
Previous QuestionNext Question
Can you please explain the difference between copy constructor and an assignment operator?What is deep copy?