首页 > 代码库 > invokespecial指令

invokespecial指令

早期的指令是invokenonvirtual,但从JDK 1.0.2开始重命名为invokespecial。为了解决下面的问题:

Component A - version 1

public class GrandParent {
  protected void myMethod() {
    // ...
  }
}
public class Parent extends GrandParent {
}

Component B

public class Child extends Parent {
  protected void myMethod() {
    // ...
    super.myMethod();
  }
}

The compiler would compile the super.myMethod() call in Child to invokespecial GrandParent.myMethod(). Now suppose a new version of Component A is released:

Component A - version 2

public class GrandParent {
  protected void myMethod() {
    // ...
  }
}
public class Parent extends GrandParent {
  protected void myMethod() {
    // ...
    super.myMethod();
  }
}

为了兼容性,通过设置ACC_SUPER标记表示使用新语义。从JDK 1.1 以后所有的编译器都设置ACC_SUPER。

invokespecial比起invokenonvirtual来多了一些限制,只能在三种情况下使用:

  • the instance initialization method,
  • a private method of this
  • a method in a superclass of this。

参考资料

invokespecial指令