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
Bytecodes are above, why the numbers on the left are 0 1 3 4 5 7 ..., not continous, like 0 1 2 3 4 5 6 7... , Does the missing of 2 and 6 mean something ?