InterviewSolution
Saved Bookmarks
| 1. |
Distinguish between shallow copy and deep copy. |
|
Answer» Shallow copy does memory dumping bit-by-bit from one object to another. Deep copy is copy field by field from object to another. Deep copy is achieved using copy constructor and or overloading assignment operator. |
|