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