I was reading about the cloning in Java, how to make shallow/deep copies of object etc.
I was wondering why do I need to create object clones in Java? Any real time examples could be helpful in understanding.
|
|
Quite often you want to use immutable objects, in which case cloning is an essential part of your code. If for example you have an immutable object that has a list or array type field, your getter should always return a clone of the list or array to preserve immutability. The other typical use case is when you want "transactional" modifications, when you call several state changing methods but only want the result to be visible if all of them are successful. |
|||||
|
|
Having a cloned copy of something means you can have "before" and "after" versions. You can leave the original alone while you test something out with a copy. You can provide undo by simply reverting to the original version. |
|||||||
|
|
A concrete example of cloning is the: prototype design pattern |
|||
|
|
|
You may use a deep cloned copy of your object because you may need a partial result in some method which you would like to use later. |
|||
|
|
|
As a way to help preserve encasulation (and therefore make you code more robust), you could clone objects before returnng them from a getter. For example, a getDate method might clone a date field before returning to the caller. |
|||
|