listing16-12_arrayinitializationbytecode.txt

来自「着几乎所有智能机厂商都将有自己配套的App Store,甚至并非智能手机制造商的」· 文本 代码 · 共 46 行

TXT
46
字号
// Listing 16-12. Bytecode Instruction for Storing a Simple Integer Array// Java source-code instruction:int[] values = new int[]{ 23, 57, 23453, 2342, 232, 213, 345, 56, 6767 };// Resulting bytecode instructions:bipush 9newarray int[]dupiconst_0bipush 23iastoredupiconst_1bipush 57iastoredupiconst_2sipush 23453iastoredupiconst_3sipush 2342iastoredupiconst_4sipush 232iastoredupiconst_5sipush 213iastoredupbipush 6sipush 345iastoredupbipush 7bipush 56iastoredupbipush 8sipush 6767iastore

⌨️ 快捷键说明

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