In Java, what are the differences between Shallow copy and Deep copy?

Answered

In Java, what are the differences between Shallow copy and Deep copy?

Ninja Asked on 17th September 2018 in Java.
Add Comment
1 Answer(s)
Best answer

In Java, shallow copy is a bit-wise copy of an object. A new object is created that has an exact copy of the values in the original object. If any of the fields of the object are references to other objects, just the reference addresses are copied i.e., only the memory address is copied. The default implementation of clone() method in Java performs a shallow copy.

A deep copy copies all fields, and makes copies of dynamically allocated memory pointed to by the fields. A deep copy occurs when an object is copied along with the objects to which it refers.

Ninja Answered on 17th September 2018.
Add Comment