object.bc

来自「PracticalJAVACode 的源码」· BC 代码 · 共 9 行

BC
9
字号
0 new #2 <Class java.lang.Object>
                      //Create an object of type java.lang.Object
                      //and push a reference to it(lock).
3 dup                 //Duplicate the top stack value and push it.
4 invokespecial #3 <Method java.lang.Object()>
                      //Pop the object reference(lock), and invoke
                      //its constructor.
7 astore_1            //Pop the object reference(lock) and store
                      //it at index 1 of the local variable table.

⌨️ 快捷键说明

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