What I understood from Why is the clone() method protected in java.lang.Object? that since we are not cloning the object itself and to make use of cloning in any sub class we need to override it but what if the Object's contains public clone method? we still need to override it in sub class to make use of it.
Editing: In question Why is the clone() method protected in java.lang.Object? people are explaining why we have protected clone method in Object class, but my question is if the method in the class is public clone instead of protected clone we still need to implements Clonable interface in subclass to make use of cloning. So why we have not public method instead we have protected.