why can't we assign weaker privilege in subclass

12,826

Solution 1

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.

Solution 2

You can't restrict access because you have already allowed more access in the super class. e.g.

SuperClass sc = new SubClass();
sc.foo(); // is package local, not private.

The access of sc is determined by the type of the reference sc not what it references because it is impossible for the compiler to know in all cases what type the object is at run time. For this to be a safe assumption the sub-class must honour the contract given by the parent or it fails to be a valid subclass. This is no different to the parent saying a method is implemented but the sub class saying it is not (or not accessible)

You could work around this by saying you can only access the sub-class method via the parent, not directly. The problem with this is you don't know when a parent might add a method and when you make a method private you do this because you want it to be private, and not accessible another way.

BTW You can still access a private method via reflection which has the side effect that it cause all sort of problems for the JVM. e.g. it has to keep private methods even though it might determine there is no way it can be called normally.

In short, you want code which means what it says, and not have a split personality. It is either package local or it is private not something sort of in between but not really either. This is not such a problem the other way. i.e. if the sub class is public. It just means the sub-class can be used in more places than the parent, just like it can implement more methods.

Solution 3

If this were allowed, there would be a backdoor through which you could call methods that should not be accessible.

Lets say that this is allowed

class Super {  
    public void method() {  
        System.out.println("Super");  
    }  
}


class Sub extends Super {  
    // This is not allowed, but suppose it was allowed  
    protected void method() {  
        System.out.println("Sub");  
    }  
}

// In another class, in another package:  
Super obj = new Sub();  
obj.method();

obj.method would be possible, because method() is public in class Super. But it should not be allowed, because obj is really referring to an instance of Sub, and in that class, the method is protected!

To restrict a call to a method in class Sub that should not be accessible from the outside, this restriction is put.

Solution 4

Constricting the access modifier of a super class method is an invalid override because it's breaking the super-class contract and invalidates the substitution principle i.e. a sub-class object IS-A super-class object as well.

public void doSomething(SuperClass sc) {
  sc.publicMethodInSuperClass();
}

doSomething(new SubClass()); // would break

If this was allowed, the above client code would break because your SubClass doesn't have that method public.

Reference:
Liskov substitution principle

Share:
12,826
Admin
Author by

Admin

Updated on June 05, 2022

Comments

  • Admin
    Admin about 2 years

    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 have access specifier "private". When compiling this code, I am getting a compilation error:

    "attempting to assign weaker access privileges".

    Could somebody please explain to me what is wrong with assigning weaker privileges in a subclass?

    Here is the code that caused the compilation error:

    class Superclass 
    {
        void foo() 
        {
            System.out.println("Superclass.foo");
        }
    }
    
    class Subclass extends Superclass 
    {
        private void foo() 
        {
            System.out.println("Subclass.foo");
        }
    }
    
  • Bohemian
    Bohemian almost 11 years
    Yes, but why must that be (is what he's asking)?
  • Stephen C
    Stephen C over 6 years
    "The only reason I can think of to have this restriction is that when a subclass derives from an interface, as a client programmer, you expect to be able to call all the accessible methods of the interface from a reference to the derived class." - That's basically LSP. Because, if the client programmer cannot do that, then the subclass cannot be substituted for the parent class!
  • quamrana
    quamrana over 6 years
    No its not. LSP refers to the client's perspective where they only know about the base class and expect the base class to work a certain way. When you supply a derived class to the client because your language allows it, then the derived class should behave the same way, such that the client function still works.
  • Stephen C
    Stephen C over 6 years
    I think you are construing the LSP too narrowly. The Liskov & Wing definition is this: "Subtype Requirement: Let ϕ ( x ) be a property provable about objects x of type T. Then ϕ ( y ) should be true for objects y of type S where S is a subtype of T.". In this case, ϕ is having an accessible method foo. This is a property of SuperClass that clients depend on, and therefore also needs to be a property of SubClass ... or else an instance of the latter is not substitutable for an instance of the former. See en.wikipedia.org/wiki/Liskov_substitution_principle
  • Ashish Kamble
    Ashish Kamble almost 5 years
    You can add some example code to support explain more