Why does Java specify that the access specifier for an overriding method can allow more, but not less, access than the overridden method? For example, a protected instance method in the superclass can be made public, but not private, in the subclass.
|
It's a fundamental principle in OOP: the child class is a fully-fledged instance of the parent class, and must therefore present at least the same interface as the parent class. Making protected/public things less visible would violate this idea; you could make child classes unusable as instances of the parent class. |
|||
|
|
|
Imagine these two classes:
I could write this code:
And it would have to be valid, since on Animal the method getName() is public, even tho it was made private on Lion. So it is not possible to make things less visible on subclasses as once you have a superclass reference you would be able to access this stuff. |
||||
|
|
|
Because it would be weird:
|
|||||||
|
|
Because a subclass is a specialization of the superclass, or in other words, it's an extension of the superclass. Imagine for instance the toString method. All Java objects have it because the class Object has it. Imagine you could define a class with the method toString private. You then no longer treat all Objects equally. For instance, you would no longer be able to this safely:
|
|||
|
|
|
Well, in terms of the specific case you mentioned, how exactly would Java handle that? If the subclass made a public/protected method private, then what should the JVM do when that method is invoked on an instance of the subclass? Honor the private and invoke the superclass' implementation? Further, you're breaking the contract specified by the superclass when you suddenly say "no one can access this method, despite what the contract initially said." |
|||
|
|

B extends AifB is-a A. So ifAcan doaction(), andB is-a A, thenBshould be able to doaction()as well. – davin Jul 27 '11 at 21:52