What is the difference between shallow copy and deep copy?



What is the difference between shallow copy and deep copy?..

Answer / hrpynux@gmail.com

A shallow copy constructs a new compound object and then (to the extent possible) inserts references into it to the objects found in the original. A deep copy constructs a new compound object and then, recursively, inserts copies into it of the objects found in the original.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is overloading unary operator?

0 Answers  


Explain virtual class?

0 Answers  


What is a pdb file?

0 Answers  


Is there something that we can do in C and not in C++?

14 Answers   Patni,


Write a C++ Program to Multiply two Numbers

1 Answers  


explain the reference variable in c++?

0 Answers  


Write my own zero-argument manipulator that should work same as hex?

0 Answers  


What is the difference between multiple and multilevel inheritance in c++?

0 Answers  


What is #include iostream in c++?

0 Answers  


What is the error in the code below and how should it be corrected?

0 Answers  


Difference between pointer to constant and constant pointer to a constant. Give example.

0 Answers   HAL,


write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement

2 Answers  


Categories