+2 votes
in C Plus Plus by

Distinguish between shallow copy and deep copy.

1 Answer

0 votes
by

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.

Related questions

+1 vote
asked Jul 16, 2019 in C Plus Plus by Indian
+1 vote
asked Jul 16, 2019 in C Plus Plus by Indian
...