Return float
from method
Bytecode
Type | Description |
u1 | freturn opcode = 0xAE (174) |
Pops a float from the top of the stack and pushes it onto the operand stack of the invoker.
The returning method must have return type float
. The value must be
of type float
. The value is popped from the operand stack of the
current frame and pushed onto the operand stack of the frame of the invoker. Any other
values on the operand stack of the current method are discarded. If the returning method
is a synchronized
method, the monitor acquired or reentered on invocation of
the method is released or exited (respectively) as if by execution of a monitorexit
instruction.
The interpreter then returns control to the invoker of the method, reinstating the frame of the invoker.