我写了一个简单的java源代码:
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
并使用javap -c命令将其转换为等效字节码
Compiled from "Main.java"
public class Main {
public Main();
Code:
0: aload_0
1: invokespecial #1 // Method java/lang/Object."<init>":()V
4: return
public static void main(java.lang.String[]);
Code:
0: getstatic #2 // Field java/lang/System.out:Ljava/io/PrintStream;
3: ldc #3 // String Hello World!
5: invokevirtual #4 // Method java/io/PrintStream.println:(Ljava/lang/String;)V
8: return
}
什么是#1,#2,#3,#4 ,......?
何时以及为何使用它?
答案 0 :(得分:4)
如果使用
进行详细反编译,那些#
符号引用类的常量池
javap -c -s -verbose Main.class
您将在Constant pool
部分
Constant pool:
#1 = Methodref #6.#15 // java/lang/Object."<init>"()V
#2 = Fieldref #16.#17 //
= String #18 // Hello World!
#4 = Methodref #19.#20 // java/io/PrintStream.println:(Ljava/lang/String;)V
#5 = Class #21 // Main
#6 = Class #22 // java/lang/Object
#7 = Utf8 <init>
#8 = Utf8 ()V
#9 = Utf8 Code
#10 = Utf8 LineNumberTable
#11 = Utf8 main
...
答案 1 :(得分:1)
#x
是指班级constant pool中的一个条目。条目的实际值将打印在注释中。
还要查看常量池使用javap -c -verbose ...