⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 copyarray2.bc

📁 PracticalJAVACode 的源码
💻 BC
字号:
Method void copyArray2(int[], int[])
   0 aload_1          //Push the object reference at index 1 of
                      //the local variable table(src).
   1 arraylength      //Pop src and push its length.
   2 istore_3         //Pop the length and store it at index 3 of
                      //the local variable table(size).
   3 aload_1          //Push the object reference at index 1 of
                      //the local variable table(src).
   4 iconst_0         //Push 0.
   5 aload_2          //Push the object reference at index 2 of
                      //the local variable table(dest).
   6 iconst_0         //Push 0.
   7 iload_3          //Push the value at index 3(size).
   8 invokestatic #13 <Method void arraycopy(java.lang.Object,
                      int, java.lang.Object, int, int)>
                      //Pop the top five values and call the
                      //arraycopy method.
  11 return           //Return to calling method.

⌨️ 快捷键说明

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