What is the main difference between shallow cloning and deep cloning of objects in java?
2691
10-Apr-2014
Sumit Kesarwani
10-Apr-2014Java supports shallow cloning of objects by default when a class implements the java.lang.Cloneable interface.
Deep cloning through serialization is faster to develop and easier to maintain but carries a performance overhead.