首页 > 代码库 > 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指令
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。