Tuesday 28 May 2019

Java Cloning - deep copy and shallow copy





Possible Duplicates:
Deep copy vs Shallow Copy
In Java, what is a shallow copy?
What is the difference between a deep copy and a shallow copy?






Can you please tell me what does it mean by cloning in java? what is deep copy and shallow copy, please explain with examples


Answer



I strongly recommend reading of Item 11 in Effective Java Second Edition


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...