Carry out divisions resulting in integer values.
System. |
Definition and UsageThe floorDiv() method computes the integer division between two numbers, rounding down the result. Unlike regular integer division, negative results are rounded towards negative infinity instead of being truncated towards zero.
One of the following:
public static int floorDiv(int dividend, int divisor)
|
public static long floorDiv(long dividend, long divisor)
|
Parameter |
Description |
dividend |
Needed: The dividend for the division operation. |
divisor |
Needed: The divisor for the division operation. |
Returns: |
An int or long value representing the result of integer |
Throws: |
ArithmeticException is thrown when the divisor is zero. |
Java Version: |
1.8+ |