why can't we assign weaker privilege in subclass

后端 未结 8 1186
挽巷
挽巷 2020-12-09 10:53

I have a class which has a method whose access specifier by default is public. Now, I would like to extend this class in a subclass and I want to override this method to hav

8条回答
  •  無奈伤痛
    2020-12-09 11:37

    The short answer is that it is not allowed because it would break type substitutability; see also the Liskov Substititution Principle (LSP).

    The point is that polymorphism in Java (and other programming languages) relies on you being able to treat an instance of a subclass as if it was an instance of the superclass. But if the method is restricted in the subclass, you find that the compiler cannot figure out whether the access rules allow a method to be called ...

    For instance, lets assume that your example code was legal:

    // Assume this code is in some other class ...
    
    SuperClass s1 = new SuperClass();
    
    s1.foo();                          // OK!
    
    SuperClass s2 = new Subclass();
    
    s2.foo();                          // What happens now?
    
    SuperClass s3 = OtherClass.someMethod();
    
    s3.foo();                          // What happens now?
    

    If you base the decision on whether s2.foo() is allowed on the declared type of s2, then you allow a call to a private method from outside the abstraction boundary of Subclass.

    If you base the decision on the actual type of the object that s2 refers to, you cannot do the access check statically. The s3 case makes this even clearer. The compiler has absolutely no way of knowing what the actual type of the object returned by someMethod will be.

    Access checks that could result in runtime exceptions would be a major source of bugs in Java application. The language restriction under discussion here avoids this nasty problem.

提交回复
热议问题