InterviewSolution
Saved Bookmarks
| 1. |
How Would You Make A Copy Of An Entire Java Object With Its State? |
|
Answer» Have this class IMPLEMENT Cloneable INTERFACE and CALL its METHOD CLONE(). Have this class implement Cloneable interface and call its method clone(). |
|