static void heapVar();
Code:
0: iconst_3
1: newarray int
3: dup
4: iconst_0
5: bipush 100
7: iastore
8: dup
9: iconst_1
10: sipush 200
13: iastore
14: dup
15: iconst_2
16: sipush 300
19: iastore
20: astore_0
21: return
字节码在上面,为什么左边的数字是0 1 3 4 5 7 ...,而不是连续的,例如0 1 2 3 4 5 6 7 ...,缺少2和6是否意味着什么?