How can a derived class invoke private method of base class?

11,724

Solution 1

Because you defined the main method in PrivateOverride class. If you put the main method in Derived class, it would not compile, because .f() would not be visible there.

po.f() call in PrivateOverride class is not a polymorphism, because the f() in PrivateOverride class is private, so f() in Derived class is not overriden.

Solution 2

I do not really see the problem. That method is called ""within"" the class, this is pretty much expected. This method is not overidden at all, instead it is shadowed by another one.

Solution 3

Methods in Java are dispatched depending on the static type of the receiver, which in this case is a PrivateOverride. Do not be confused by the fact that the po variable, by examining the code, can only hold a Derived instance at that line: only the declaration matters when available methods are searched.

And, by the way, the call to f() is not even translated into a virtual call in the final bytecode, because when the compiler looks for the potentially applicable methods in the class PrivateOverride, it only finds Object methods and the f() definition, which is only visible because the main() method is defined in PrivateOverride itself (see JLS 15.12)

Solution 4

When a method is invoked the JVM has to figure out what piece of code to execute: sometimes this is done at runtime (e.g. when overriding methods); sometimes this is done at compile time (e.g. when overloading methods). Once the JVM resolves what bit of code it is executing the actual instance that you are referring to isn't really any more significant than any other parameter.

The example code given sets up a scenario that may look like method overriding but isn't, so the method ends up getting bound at compile time. The private visibility modifier is not violated because the invocation doesn't touch any of Derived's code.

Looking at the bytecode (which the Java code is compiled to via javac) is instructive -

Say we slightly modify the original code to:

public class PrivateOverride {
private void f() {
    System.out.println("private f()");
}

public static void main(String[] args) {
    PrivateOverride po = new Derived();
    po.f();
    Derived d = new Derived();
    d.f();
}
}

class Derived extends PrivateOverride {
public void f() {
    System.out.println("public f()");
}
}

The main method compiles to (edited for brevity):

public static main([Ljava/lang/String;)V
  NEW Derived
  DUP
  INVOKESPECIAL Derived.<init>()V
  ASTORE 1
  ALOAD 1
  INVOKESPECIAL PrivateOverride.f()V
  NEW Derived
  DUP
  INVOKESPECIAL Derived.<init>()V
  ASTORE 2
  ALOAD 2
  INVOKEVIRTUAL Derived.f()V
  RETURN

Notice that in each case the method is invoked on the compile time type. Notice also that the second call of f() uses the INVOKEVIRTUAL instruction. This is what tells the JVM to check the runtime type and decide what to call based on that.

Solution 5

I just went through the byte code of the compiled version of the above class and got the invokespecial Opcode. This Opcode was enough to tell the reason why the actual output is obvious. Invokespecial is used in three situations in which an instance method must be invoked based on the type of the reference, not on the class of the object. The three situations are:

1)invocation of instance initialization () methods

2)invocation of private methods

3)invocation of methods using the super keyword

Above example lies within the second scenario where we have invocation of private methods. So the method got invoked based on the the type of reference i.e PrivateOverride rather than type of class i.e Derived

So now the question arises why invokespecial? We have other Opcode like invokevirtual which gets invoked for method on the basis of classtype rather than reference type. So lets discuss why invokespecial Opcode is used for private methods. But we should know the difference between invokevirtual and invokespecial. Invokespecial differs from invokevirtual primarily in that invokespecial selects a method based on the type of the reference rather than the class of the object. In other words, it does static binding instead of dynamic binding. In each of the three situations where invokespecial is used, dynamic binding wouldn't yield the desired result.

Share:
11,724
Saurab Parakh
Author by

Saurab Parakh

Updated on June 07, 2022

Comments

  • Saurab Parakh
    Saurab Parakh about 2 years
    public class PrivateOverride {  
    
        private void f() {  
            System.out.println("private f()");  
        }
    }  
    
    public class Derived extends PrivateOverride {  
    
        public void f() {                         //this method is never run.
            System.out.println("public f()");     
        }  
    }  
    
    public static void main(String[] args) {
    
        // instantiate Derived and assign it to 
        // object po of type PrivateOverride.
        PrivateOverride po = new Derived();  
    
        // invoke method f of object po.  It
        // chooses to run the private method of PrivateOveride
        // instead of Derived
        po.f();                         
      }  
    }  
    

    So, the output of this code is private f(). Now, the question arises to my mind: how can po which is an object of Derived Class call a private method of PrivateOverride which is its base class?

  • Piotr Chojnacki
    Piotr Chojnacki over 10 years
    Well, that's a thing nobody here noticed I guess. Thanks Peter. ;-)
  • Suresh Atta
    Suresh Atta over 10 years
    This is the actual reason :) My eyes debug more faster when I see code in eclipse.
  • Saurab Parakh
    Saurab Parakh over 10 years
    Thats fine but po contains an instance of Derived. So is it right to say that still it is valid and should be able to invoke method of PrivateOverride class even if it does not contains its instance?
  • pepe
    pepe over 10 years
    Derived is a PrivateOverride, because Derived extends PrivateOverride. In any classes other than PrivateOverride class, the private .f() method wasn't visible. This case is special, the main method is in PrivateOverride class, which can call f() easily. It's not polymorphism. The compiler just calls what it sees through the PrivateOverride type.
  • Rop
    Rop over 10 years
    Weird case, but this is entirely dependent on what the java language spec says: docs.oracle.com/javase/specs/jls/se7/jls7.pdf --- You only need to carefully read through the 670 pages, and it should all be crystal clear! :D