nonfinal.bc

来自「Practical Java也是一本和J2ME手机游戏开发相关的书」· BC 代码 · 共 7 行

BC
7
字号
 0 getstatic #6 <Field int a>  //Push the value for a.
 3 getstatic #7 <Field int b>  //Push the value for b.
 6 iadd                        //Pop a and b, push their sum.
 7 bipush 100                  //Push 100.
 9 iadd                        //Pop sum and 100, push their sum.
10 istore_1                    //Pop sum and store it at index 1
                               //of the local variable table(c).

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?