Store into long
array
Bytecode
Type | Description |
u1 | lastore opcode = 0x50 (80) |
Stack ..., arrayref, index, value.word1, value.word2 => ...
Description
The arrayref must be of type reference
and must
refer to an array whose components are of type long
.
The index must be of type int
and value must be of type long
.
The arrayref, index, and value are popped from the operand stack.
The long
value is stored as the component of the array indexed by index.
NullPointerException - arrayref is null
ArrayIndexOutOfBoundsException - index is < 0 or >= arrayref.length