Bytecode
Type | Description |
u1 | dastore opcode = 0x52 (82) |
Stack ..., arrayref, index, value.word1, value.word2 => ...
Description
Pops a two-word double precision floating point number from the stack
and stores it in an array of doubles.
The arrayref must be of type reference
and must refer to an array
whose components are of type double
.
The index must be of type int
and value must be of type double
.
The arrayref, index, and value are popped from the operand stack.
The double
value is stored as the component of the array indexed by index.
Exceptions
NullPointerException - arrayref is null
ArrayIndexOutOfBoundsException - index is < 0 or is >= arrayref.length