字节码指令表(查找使用)
字节码 助记符 指令含义 0x00 nop 什么都不做 0x01 aconst_null 将null推送至栈顶 0x02 iconst_m1 将int型-1推送至栈顶 0x03 iconst_0 将int型0推送至栈顶 0x04 iconst_1 将int型1推送至栈顶 0x05 iconst_2 将int型2推送至栈顶 0x06 iconst_3 将int型3推送至栈顶 0x07 iconst_4 将int型4推送至栈顶 0x08 iconst_5 将int型5推送至栈顶 0x09 lconst_0 将 long 型0推送至栈顶 0x0a lconst_1 将 long 型1推送至栈顶 0x0b fconst_0 将 float型0推送至栈顶 0x0c fconst_1 将 float型1推送至栈顶 0x0d fconst_2 将 float型2推送至栈顶 0x0e dconst_0 将 double型0推送至栈顶 0x0f dconst_1 将 double型1推送至栈顶 0x10 bipush 将单字节的常量值(Byte.MIN_VALUE ~ Byte.MAX_VALUE,即 -128~127)推送至栈顶 0x11 sipush 将短整型的常量值(Short.MIN_VALUE ~ Short.MAX_VALUE,即 -32768~32767)推送至栈顶 0x12 ldc