InterviewSolution
Saved Bookmarks
| 1. |
How Can You Create A Deep Copy Of The Complete Java Object Along With Its State? |
|
Answer» A deep COPY of the entire JAVA object can be created by having the class implement the cloneable interface and make a CALL to its clone () METHOD. A deep copy of the entire java object can be created by having the class implement the cloneable interface and make a call to its clone () method. |
|