【JVM】字节码解读 finally 含return语句
程序员文章站
2022-04-18 14:44:59
...
java代码:
字节码:
[img]http://dl.iteye.com/upload/attachment/252465/4de26958-4a7a-3179-80d8-373c3ee36d1a.png[/img]
详细解读:
1:获取指定类的静态域,并将其值压入栈顶,此处获取System类out 静态field
3:从常量池索引位置为:38,取出字符串推送至栈顶
5:调用println方法
12:从常量池索引位置为:39,取出字符串推送至栈顶 [color=red](finally部分字符串压入栈顶)[/color]
14:从栈顶弹出一个对象引用返回。[color=red](可以看的出来,返回为binsong)[/color]
---------------------------------------------------------------
[img]http://dl.iteye.com/upload/attachment/252479/7d3e14a5-55d2-3104-9d78-50eaf5f5a743.png[/img]
此处存在astore_1和aload_1,不是很明白指向那个变量,如有知道清楚的。请回复,谢谢!
public String sayHello4() {
try {
System.out.println("sayHello4");
return "li";
} finally {
return "binsong";
}
}
字节码:
[img]http://dl.iteye.com/upload/attachment/252465/4de26958-4a7a-3179-80d8-373c3ee36d1a.png[/img]
详细解读:
1:获取指定类的静态域,并将其值压入栈顶,此处获取System类out 静态field
3:从常量池索引位置为:38,取出字符串推送至栈顶
5:调用println方法
12:从常量池索引位置为:39,取出字符串推送至栈顶 [color=red](finally部分字符串压入栈顶)[/color]
14:从栈顶弹出一个对象引用返回。[color=red](可以看的出来,返回为binsong)[/color]
---------------------------------------------------------------
public String sayHello4() {
try {
System.out.println("sayHello4");
return "li";
} finally {
System.out.println("sdf");
}
}
[img]http://dl.iteye.com/upload/attachment/252479/7d3e14a5-55d2-3104-9d78-50eaf5f5a743.png[/img]
此处存在astore_1和aload_1,不是很明白指向那个变量,如有知道清楚的。请回复,谢谢!
上一篇: 传递参数的技巧