laload

Operation
Load long from array

laload

Forms
laload = 47 (0x2f)

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. Both arrayref and index are popped from the operand stack. The long value in the component of the array at index is retrieved and pushed onto the top of the operand stack.

Runtime Exceptions
If arrayref is null, laload throws a NullPointerException.

Otherwise, if index is not within the bounds of the array referenced by arrayref, the laload instruction throws an ArrayIndexOutOfBoundsException.