也就是说,如果参数为6.7 ,则负无穷大方向上的相邻6.7数为6.699999999999999 。
nextDown()
方法的语法为:
Math.nextDown(start)
注意 : nextDown()
方法是静态方法。因此,我们可以使用类名Math
直接调用该方法。
nextDown()参数
- start-要返回其相邻编号的起始编号
注意 : start的数据类型可以是float或double。
nextDown()返回值
- 返回开始向负无穷大处相邻的数字
- 如果start为NaN,则返回NaN
- 如果start为负无穷大,则返回负无穷大
注意 : nextDown()
方法等效于Math.nextAfter(start,Double.Negative_INFINITY)。
示例:Java Math.nextDown()
class Main {
public static void main(String[] args) {
// float arguments
float start1 = 7.9f;
System.out.println(Math.nextDown(start1)); // 7.8999996
// double arguments
double start2 = 7.9;
System.out.println(Math.nextDown(start2)); // 7.8999999999999995
// with positive infinity
double infinity = Double.NEGATIVE_INFINITY;
System.out.println(Math.nextDown(infinity)); // -Infinity
// with NaN
double nan = Math.sqrt(-5);
System.out.println(Math.nextDown(nan)); // NaN
}
}
在这里,我们使用了Java Math.sqrt(-5)方法来计算-5的平方根。由于负数的平方根不是数字,因此Math.nextDown(nan)
返回NaN 。
Double.NEGATIVE_INFINITY
是Double
类的一个字段,使我们可以在程序中实现无穷大。
推荐的教程
- Math.nextAfter()
- Math.nextUp()