clone method vs copy constructor in java. which one is correct solution. where to use each case?
|
Clone is broken, so dont use it.
Prefer a method that copies the object
Read more http://adtmag.com/articles/2000/01/18/effective-javaeffective-cloning.aspx |
|||||||||||||||||
|
|
Have in mind that There are a few alternatives, which are preferable (since the
|
||||
|
|
|
Keep in mind that the copy constructor limits the class type to that of the copy constructor. Consider the example:
This doesn't work if
or
Now |
|||||
|
|
clone() was designed with several mistakes (see this question), so it's best to avoid it. From Effective Java 2nd Edition, Item 11: Override clone judiciously
This book also describes the many advantages copy constructors have over Cloneable/clone.
All standard collections have copy constructors. Use them.
|
|||
|
|
|
See also: How to properly override clone method?. Cloning is broken in Java, it's so hard to get it right, and even when it does it doesn't really offer much, so it's not really worth the hassle. |
|||
|
|
|
That was discussed here as well: http://stackoverflow.com/questions/2283493/how-can-i-create-a-copy-of-my-data-type-i-created-in-java/2283562#2283562 |
|||
|
|
cloneat all costs and go for your own copy solution. – dimitko Mar 12 '10 at 10:51