java 主方法 this,'main'方法中的JVM指令ALOAD_0指向'args'而不是'this'?

博客作者在实现Java子集的过程中,遇到关于字节码理解的问题。通过分析main方法的Jasmin字节码,发现在静态方法中,aload_0指令并未按预期将'this'压栈,而是加载了第一个参数。实际上,在静态方法中,aload_0用于获取方法的第一个引用参数,即在这里的args数组。博客探讨了Java字节码在静态方法中的应用和aload_0指令的真实作用。
摘要由CSDN通过智能技术生成

I am trying to implement a subset of Java for an academic study. Well, I'm in the last stages (code generation) and I wrote a rather simple program to see how method arguments are handled:

class Main {

public static void main(String[] args) {

System.out.println(args.length);

}

}

Then I built it, and ran 'Main.class' through an online disassembler I found at:

http://www.cs.cornell.edu/People/egs/kimera/disassembler.html

I get the following implementation for the 'main' method:

(the disassembled output is in Jasmin)

.method public static main([Ljava/lang/String;)V

.limit locals 1

.limit stack 2

getstatic java/lang/System/out Ljava/io/PrintStream;

aload_0

arraylength

invokevirtual java/io/PrintStream.println(I)V

return

.end method

My problem with this is:

1. aload_0 is supposed to push 'this' on to the stack (thats what the JVM spec seems to say)

2. arraylength is supposed to return the length of the array whose reference is on the top-of-stack

So according to me the combination of 1 & 2 should not even work.

How/why is it working? Or is the disassembler buggy and the actual bytecode is something else?

解决方案

aload_0 is supposed to push 'this' on to the stack

Not quite … aload_0 reads the first reference argument (or, more generally, the first local reference variable) of the method and pushes it onto the stack.

In member functions, the first local variable happens to be the this reference.

But main is not a member function, it’s a static function so there is no this argument, and the true first argument of the method is args.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值