as I understood, the method clone() gives us the ability to copy object (no refernce) in Java. But I also read, that the copy is shallow. So what the point? Which ability the clone() method gives me, that a simple assingment doesn't?
|
|
|||
|
|
|
The difference is that you can modify the cloned object without modifying the original object.
The change on Let's see how the situation is after the individual statements (assuming
|
|||||||||||
|
|
An assignment copies the reference of an instance to a variable. A clone operation will clone the instance (and assign a reference to the clone). With assignment, you'll end up with multiple variables pointing to one object, with cloning you'll have multiple variables that hold references of multiple objects.
|
|||||
|
|
A simple assignment will simply create an Alias for the object. With clone(), each attribute member will also be initialized in the clone Object. However, if the Attribute members are themselves have more objects contained within them, those will not not be copied. |
|||
|
|
|
Shallow copy is the default for Object. you can override clone to do a deep copy. |
|||
|
|
|
to clone in depth you have to implement Cloneable and override clone()
} |
|||
|
|