Java Math nextUp() 方法和示例
Java .lang.Math.nextUp()是Java中的内置数学函数,它返回与正无穷方向提供的参数相邻的浮点值。 nextUp()方法被重载,这意味着我们在 Math 类下有多个同名方法。 nextUp() 的两个重载方法:
- 双重类型: nextUp(double d)
- 浮动类型: nextUp(float f)
笔记 :
- 如果参数为NaN ,则结果为NaN 。
- 如果参数为零,则结果为Double.MIN_VALUE如果我们正在处理
double如果它是float那么结果是Float.MIN_VALUE 。 - 如果参数是正无穷大,则结果是正无穷大。
句法 :
public static dataType nextUp(dataType g)
Parameter :
g : an input for starting floating-point value.
Return :
The nextUp() method returns the adjacent floating-point value closer to
positive infinity.
示例:显示Java.lang.Math.nextUp()方法的工作。
// Java program to demonstrate working
// of java.lang.Math.nextUp() method
import java.lang.Math;
class Gfg {
// driver code
public static void main(String args[])
{
double g = 69.19;
// Input double value, Output adjacent floating-point
System.out.println(Math.nextUp(g));
float gf = 78.1f;
// Input float value, Output adjacent floating-point
System.out.println(Math.nextUp(gf));
double a = 0.0 / 0;
// Input NaN, Output NaN
System.out.println(Math.nextUp(a));
float b = 0.0f;
// Input zero, Output Float.MIN_VALUE for float
System.out.println(Math.nextUp(b));
double c = 1.0 / 0;
// Input positive infinity, Output positive infinity
System.out.println(Math.nextUp(c));
}
}
输出:
69.19000000000001
78.100006
NaN
1.4E-45
Infinity