Java Math - nextDown() Method
The java.lang.Math.nextDown() method returns the floating-point value adjacent to argument in the direction of negative infinity. In special cases it returns the following:
- If either argument is a NaN, then NaN is returned.
- If the argument is negative infinity, the result is negative infinity.
- If the argument is zero, the result is -Float.MIN_VALUE.
Syntax
public static float nextDown(float f)
Parameters
f |
Specify starting floating-point value. |
Return Value
Returns the floating-point value adjacent to argument in the direction of negative infinity.
Exception
NA.
Example:
In the example below, nextDown() method returns the floating-point value adjacent to argument in the direction of negative infinity.
import java.lang.*; public class MyClass { public static void main(String[] args) { System.out.println(Math.nextDown(2.55f)); System.out.println(Math.nextDown(10.1f)); } }
The output of the above code will be:
2.5499997 10.099999
❮ Java.lang - Math