java.lang.Math.nextUp()是java中的内置数学函数,它返回与正infinity方向上提供的参数相邻的浮点值。nextUp()方法已重载,这意味着我们还有更多而不是在Math类下具有相同名称的一个方法。nextUp()的两个重载方法:
- 双精度类型:nextUp(double d)
- 浮点数类型:nextUp(float f)
注意:
- 如果参数为NaN,则结果为NaN。
- 如果参数为零,则结果为Double.MIN_VALUE。如果我们正在处理double,并且其为浮点型,则结果为Float.MIN_VALUE。
- 如果参数为正无穷大,则结果为正无穷大。
用法:
public static dataType nextUp(dataType g) 参数: g:an input for starting floating-point value. 返回: 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
相关用法
- Java StrictMath nextUp()用法及代码示例
- Java Math sin()用法及代码示例
- Java Math min()用法及代码示例
- Java Math cos()用法及代码示例
- Java Math ulp()用法及代码示例
- Java Math abs()用法及代码示例
- Java Math fma()用法及代码示例
- Java Math max()用法及代码示例
- Java Math tan()用法及代码示例
- Java Math nextDown()用法及代码示例
- Java Math multiplyFull()用法及代码示例
- Java Math tanh()用法及代码示例
- Java Math acos()用法及代码示例
- Java Math cosh()用法及代码示例
- Java Math IEEEremainder()用法及代码示例
注:本文由纯净天空筛选整理自Niraj_Pandey大神的英文原创作品 Java Math nextUp() method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。