Java - Math nextUp(double x) 方法



描述

Java Math nextUp(double d) 方法返回正无穷大方向上紧邻 d 的浮点值。此方法在语义上等效于 nextAfter(d, Double.POSITIVE_INFINITY); 但是,nextUp 实现可能比其等效的 nextAfter 调用运行得更快。特殊情况 -

  • 如果参数为 NaN,则结果为 NaN。

  • 如果参数为正无穷大,则结果为正无穷大。

  • 如果参数为零,则结果为 Double.MIN_VALUE

声明

以下是 java.lang.Math.nextUp() 方法的声明

public static double nextUp(double d)

参数

d - 起始浮点值

返回值

此方法返回更靠近正无穷大的相邻浮点值。

异常

示例:获取正双精度值的下一个值

以下示例演示了对正值使用 Math nextUp() 方法。

package com.tutorialspoint;
public class MathDemo {
   public static void main(String[] args) {

      // get a number
      double x = 154.28764;
   
      // print the next number for x
      System.out.println("Math.nextUp(" + x + ")="
         + Math.nextUp(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.nextUp(154.28764)=154.28764000000004

示例:获取零双精度值的下一个值

以下示例演示了对零值使用 Math nextUp() 方法。

package com.tutorialspoint;
public class MathDemo {
   public static void main(String[] args) {

      // get a number
      double x = 0.0;
   
      // print the next number for x
      System.out.println("Math.nextUp(" + x + ")="
         + Math.nextUp(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.nextUp(0.0)=4.9E-324

示例:获取负双精度值的下一个值

以下示例演示了对负值使用 Math nextUp() 方法。

package com.tutorialspoint;
public class MathDemo {
   public static void main(String[] args) {

      // get a number
      double x = -154.28764;
   
      // print the next number for x
      System.out.println("Math.nextUp(" + x + ")="
         + Math.nextUp(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.nextUp(-154.28764)=-154.28763999999998
java_lang_math.htm
广告