int
irem |
Stack
..., value1, value2 ..., result
Description
Both value1 and value2 must be of type int
. The values are popped from the operand stack. The int
result is value1 - (value1 / value2) * value2. The result is pushed onto the operand stack.
The result of the irem instruction is such that (a/b)*b
+
(a%b)
is equal to a
. This identity holds even in the special case that the dividend is the negative int
of largest possible magnitude for its type and the divisor is -1
(the remainder is 0
). It follows from this rule that the result of the remainder operation can be negative only if the dividend is negative and can be positive only if the dividend is positive. Moreover, the magnitude of the result is always less than the magnitude of the divisor.
Runtime Exception
If the value of the divisor for an int
remainder operator is 0, irem throws an ArithmeticException
.
Contents | Prev | Next | Index
Java Virtual Machine Specification (HTML generated by dkramer on February 25, 1997)
Copyright © 1996 Sun Microsystems, Inc.
All rights reserved
Please send any comments or corrections to doug.kramer@sun.com