Store into float
array
Bytecode
Type | Description |
u1 | fastore opcode = 0x51 (81) |
Stack ..., arrayref, index, value => ...
Takes a single-precision float from the stack and stores it in an array of floats.
The arrayref must be of type reference
and must refer to an array
whose components are of type float
.
The index must be of type int
and the value must be of type float
.
The arrayref, index, and value are popped from the operand stack.
The float
value is stored as the component of the array indexed by index.
NullPointerException - arrayref is null
ArrayIndexOutOfBoundsException - index is < 0 or >= arrayref.length