| Author |
clone() and finalize()
|
sudhakarc kumar
Greenhorn
Joined: Feb 23, 2011
Posts: 4
|
|
why clone() and finalize() method in Object class is protected.While all the methods of Object class are public.
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3793
|
|
Unlike the other methods in Object, neither are meant to be called directly on an instance of Object, they are intended to be overridden by subclasses.
By default clone() throws an exception if the class does not implement Cloneable. If you want to make a class cloneable, the standard pattern is to implement Cloneable and override clone(), making it public.
finalize() is not meant to be called by the programmer - it's called by the garbage collector. So there's no need for it to be public.
|
 |
sudhakarc kumar
Greenhorn
Joined: Feb 23, 2011
Posts: 4
|
|
i am not clear about the answer.
i want to know that what would have happened if these methods would have been public.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32689
|
|
|
If you search, you will find this question comes up frequently. The clone() method is not meant to be called until it has been overridden; then it can become public. The finalize() method should never be called; only the JVM should call it, so it does not need to be public.
|
 |
 |
|
|
subject: clone() and finalize()
|
|
|