What is the difference between shallow copy and deep copy?
What is the difference between shallow copy and deep copy?
Student
The Anubhav portal was launched in March 2015 at the behest of the Hon'ble Prime Minister for retiring government officials to leave a record of their experiences while in Govt service .
Definitions
Example
Shallow Copy:
p2.Nameis a new string (value type in effect).p2.Addressis shared withp1— changingp2.Address.Citywill also affectp1.Deep Copy:
p2is fully independent ofp1.p2.Address.Citywill not affectp1.Shallow Copy in .NET:
You can perform a shallow copy using:
This is protected and typically used within a class implementing
ICloneable.Deep Copy Techniques:
Summary Table
Also Read