What is the difference between shallow copy and deep copy?
Answer Posted / 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 View All Answers
What is std :: flush?
Do you know what are pure virtual functions?
What is a volatile variable in c++?
Can we use clrscr in c++?
Name four predefined macros.
How are the features of c++ different from c?
what kind of projects are suitable for c and c++
What is the use of endl in c++ give an example?
What is the disadvantage of using a macro?
Can member data be public?
Does c++ have arraylist?
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
What is difference between array and vector in c++?
What is the difference between the functions rand(), random(), srand() and randomize()?
What is late binding c++?