istore_<n>

Operation
Store int into local variable

istore_<n>

Forms
istore_0 = 59 (0x3b) istore_1 = 60 (0x3c) istore_2 = 61 (0x3d) istore_3 = 62 (0x3e)

Stack
..., value ...

Description
The <n> must be a valid index into the local variables of the current frame (§3.6). The value on the top of the operand stack must be of type int. It is popped from the operand stack, and the value of the local variable at <n> is set to value.

Notes
Each of the istore_<n> instructions is the same as istore with an index of <n>, except that the operand <n> is implicit.