|
opcode: 84 (0x54) |
|
usage: bastore |
|
stack before: ..., arrayref, i, value
stack after: ... |
|
description: |
The Java Virtual Machine stores byte value in index
i of array arrayref . Arrayref
must be an array of bytes (or boolean), i must be an
integer and value must be byte or boolean (depending on
arrayref component type). |
exceptions: |
NullPointerException - array ref is
null
ArrayIndexOutOfBoundsException - i is not
a legal array index
ArrayStoreException - value is not the
same type as arrayref |
|
|