What is the specific reason that clone() is defined as protected in java.lang.Object?
|
|
|
The fact that clone is protected is extremely dubious - as is the fact that the It makes the method pretty useless for taking copies of data because you cannot say:
I think that the design of
|
|||||||||||||||
|
|
|
|||||||||||
|
|
The Clonable interface is just a marker saying the class can support clone. The method is protected because you shouldn't call it on object, you can (and should) override it as public. From Sun: In class Object, the clone() method is declared protected. If all you do is implement Cloneable, only subclasses and members of the same package will be able to invoke clone() on the object. To enable any class in any package to access the clone() method, you'll have to override it and declare it public, as is done below. (When you override a method, you can make it less private, but not more private. Here, the protected clone() method in Object is being overridden as a public method.) |
|||||||||||
|
|
The Clone method can't be directly used on any object, which is why it is intended to be overriden by the subclass. Of course it could be public and just throw an appropriate exception when cloning is not possible, but i think that would be misleading. The way clone is implemented right now makes you think about why you want to use clone, and how you want your object to be cloned. |
|||
|
|
|
It is protected because the default implementation does a shallow memberwise copy of all fields (including private), circumventing constructor. This is not something an object might be designed to handle in the first place (for example, it might keep track of created object instances in a shared list, or something similar). For the same reason, the default implementation of |
|||||||
|
|
From the javadoc of cloneable.
So you could call clone on every object but this would give you most of the time not the results you want or an exception. But is only encouraged if you implement cloneable. |
|||||||
|
|
Yes, same problem that I met. But I solve it by implementing this code
Just as the before someone said. |
|||||
|
|
Well, also the sun developers are only human, and they did indeed make huge mistake to implement the clone method as protected, the same mistake as they implemented a non-functioning clone method in ArrayList! So, in general, there exist a much deeper misunderstanding of even experienced Java programmers about the clone method. However, I've recently found a fast and easy solution to copy any object with all its content, no matter how it is built and what it contains, see my answer here: Bug in using Object.clone() |
||||
|
|
|
Again, Java JDK framework shows brilliant thinking: Cloneable interface does not contain a "public T clone();" method because it acts more like an attribute (eg. Serializable) which allows an instance it to be cloned. There is nothing wrong with this design because:
|
|||||
|