了解 Javap 在常量池中的输出
在非常简单的HelloWorld应用程序上运行javap时,我对常量池周围的输出有些困惑。
测试代码
public class TestClass {
public static void main(String[] args) {
System.out.println("hello world");
}
}
Javap -c -verbose output (snipped)
// Header + consts 1..22 snipped
const #22 = String #23; // hello world
const #23 = Asciz hello world;
public static void main(java.lang.String[]);
Signature: ([Ljava/lang/String;)V
Code:
Stack=2, Locals=1, Args_size=1
0: getstatic #16; //Field java/lang/System.out:Ljava/io/PrintStream;
3: ldc #22; //String hello world
5: invokevirtual #24; //Method java/io/PrintStream.println:(Ljava/lang/String;)V
8: return
// Debug info snipped
}
好吧,所以在第3行,我们看到“hello world”常量通过#22推送到堆栈上,但const #23似乎持有实际值。我想我对#(数字)出现在打印输出的右侧时的含义有点困惑。
Oracle/Sun 的 javap 手册页还有很多不足之处。