dconst_d : push the double 0.0 or 1.0 : index :
dconst_0 ; push the double 0.0 onto the stackNote that you could also use:
ldc2_w 0.0 ; push the double 0.0 onto the stackalthough this instruction takes more space in the class file and is typically less efficient.
dconst_0 ; push the double 0.0 onto the stack dconst_1 ; push the double 1.0 onto the stack
Before | After |
... | <d>-word1 |
<d>-word2 | |
... |
Type | Description |
u1 | dconst_0 opcode = 0x0E (14) |
u1 | dconst_1 opcode = 0x0F (15) |