| Author |
Public Vs Protected methods in object class
|
Naresh Chaurasia
Ranch Hand
Joined: May 18, 2005
Posts: 309
|
|
hi,
What is the reason for having some methods public and some protected in Object class.
In order to use the protected members, the Object class has to be inherited and then only base class objects can call the protected methods, and not super class object. Why is there such kind of restriction.
|
SCJP 1.4, SCWCD1.4, OCA(1Z0-007)
|
 |
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9189
|
|
Naresh Chaurasia wrote:only base class objects can call the protected methods, and not super class object.
Base class and super class are the same thing for me
Anyway, finalize and clone methods are protected in Object class. finalize is protected so that you don't explicitly call finalize on instances of a class. finalize method is supposed to be called by garbage collector not us. clone is protected because objects of a class can be cloned if the class implements cloneable interface. So by making the method protected, you can't call the method on every class that you want (because calling clone method on object of a class that doesn't implement Cloneable interface generates a CloneNotSupportedException)...
|
SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
|
 |
 |
|
|
subject: Public Vs Protected methods in object class
|
|
|