It was a design error in Java (yes, Java is not perfect!).
It's better to avoid cloning in Java. For example Josh Bloch points out in Effective Java, Item 11:
The Cloneable interface was intended as a mixin interface (Item 18)
for objects to advertise that they permit cloning. Unfortunately, it
fails to serve this purpose. Its primary flaw is that it lacks a clone
method, and Object's clone method is protected. You cannot, without
resorting to reflection (Item 53), invoke the clone method on an
object merely because it implements Cloneable. Even a reflective
invocation may fail, as there is no guarantee that the object has an
accessible clone method. Despite this flaw and others, the facility is
in wide use so it pays to understand it.
If you want your objects to be cloneable, implement a copy constructor or copy method.
Objectin a collection, try cloning it, if it succeeded do one thing, if it threw an exception do another thing. – Eran Zimmerman Sep 14 '11 at 6:39Cloneableis "broken," but provide no explanation to the question the OP is asking (ie: "Why is the clone() method kept in Object?") – NullUserException♦ Sep 14 '11 at 6:52clonefromObjectafter it was first introduced would have broken backward compatibility going by the Sun bug database entry. The answer falls in that area of Java's history where a decision was taken and could not be changed for the sake of our children. – Vineet Reynolds Sep 14 '11 at 7:03