1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
| Last modified 2021年3月6日; size 617 bytes SHA-256 checksum 1291c5b272d5f382ff660f3c4781d8e4c15e309213158643e41f07641d479a58 Compiled from "Hello.java" public class com.atguigu.spring5.test1.Hello minor version: 0 major version: 52 flags: (0x0021) ACC_PUBLIC, ACC_SUPER this_class: #5 super_class: #6 interfaces: 0, fields: 1, methods: 3, attributes: 1 Constant pool: #1 = Methodref #6.#23 #2 = Fieldref #24.#25 #3 = Fieldref #5.#26 #4 = Methodref #27.#28 #5 = Class #29 #6 = Class #30 #7 = Utf8 a #8 = Utf8 I #9 = Utf8 <init> #10 = Utf8 ()V #11 = Utf8 Code #12 = Utf8 LineNumberTable #13 = Utf8 LocalVariableTable #14 = Utf8 this #15 = Utf8 Lcom/atguigu/spring5/test1/Hello; #16 = Utf8 main #17 = Utf8 ([Ljava/lang/String;)V #18 = Utf8 args #19 = Utf8 [Ljava/lang/String; #20 = Utf8 <clinit> #21 = Utf8 SourceFile #22 = Utf8 Hello.java #23 = NameAndType #9:#10 #24 = Class #31 #25 = NameAndType #32:#33 #26 = NameAndType #7:#8 #27 = Class #34 #28 = NameAndType #35:#36 #29 = Utf8 com/atguigu/spring5/test1/Hello #30 = Utf8 java/lang/Object #31 = Utf8 java/lang/System #32 = Utf8 out #33 = Utf8 Ljava/io/PrintStream; #34 = Utf8 java/io/PrintStream #35 = Utf8 println #36 = Utf8 (I)V { public com.atguigu.spring5.test1.Hello(); descriptor: ()V flags: (0x0001) ACC_PUBLIC Code: stack=1, locals=1, args_size=1 0: aload_0 1: invokespecial #1 4: return LineNumberTable: line 3: 0 LocalVariableTable: Start Length Slot Name Signature 0 5 0 this Lcom/atguigu/spring5/test1/Hello;
public static void main(java.lang.String[]); descriptor: ([Ljava/lang/String;)V flags: (0x0009) ACC_PUBLIC, ACC_STATIC Code: stack=2, locals=1, args_size=1 0: getstatic #2 3: getstatic #3 6: invokevirtual #4 9: return LineNumberTable: line 6: 0 line 7: 9 LocalVariableTable: Start Length Slot Name Signature 0 10 0 args [Ljava/lang/String;
static {}; descriptor: ()V flags: (0x0008) ACC_STATIC Code: stack=1, locals=0, args_size=0 0: iconst_1 1: putstatic #3 4: return LineNumberTable: line 4: 0 } SourceFile: "Hello.java"
|