getstatic在字节码中真正意味着什么?

时间:2011-12-17 16:27:27

标签: java bytecode

我有这个字节码:

new                 java.lang.Object
// stack is [newObjectRef]
dup 
// Stack is [newObjectRef newObjectRef]
invokespecial       void java.lang.Object.<init>()
// Stack is [initializedAsTypeObjectObjectRef]
putstatic           java.lang.Object class.a
// variable a has the reference of new object
getstatic           java.io.PrintStream java.lang.System.out
// Take the static value of System.out
// Stack is [initializedAsTypeObjectObjectRef System.out]

更新这是延续:

> ldc                 "test" // Stack is
> [initializedAsTypeObjectObjectRef System.out "test"]
> jsr                  pos.0000026C // call a subrutine invokevirtual       void
> java.io.PrintStream.println(java.lang.String) // actually print the
> result // stack is (I think) Empty at this time ?

翻译是否为:

  Object a = new Object();
  a = "test";
  System.out.print(a);

我的筹码好吗?

我不太清楚()。 可能我必须使用out()setter和print()之后?

我总是习惯用out()打印..

1 个答案:

答案 0 :(得分:3)

如果我编译代码

public static void main(String[] args) {
    Object a;
    a = "test";
    System.out.println(a);
}

并运行

javap -c Main

我看到了

public static void main(java.lang.String[]);
Code:
   0: ldc           #2                  // String test
   2: astore_1      
   3: getstatic     #3                  // Field java/lang/System.out:Ljava/io/PrintStream;
   6: aload_1       
   7: invokevirtual #4                  // Method java/io/PrintStream.println:(Ljava/lang/Object;)V
  10: return    

您可以看到getstatic加载字段System.out


对象没有method名为out(),因此我不相信您正在查看您认为自己的代码。

getstatic获得static个字段,例如System.out是系统的static字段,因此如果您编写

System.out.println();

这将导致使用getstatic