Java - Math nextUp(float x) 方法



描述

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

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

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

  • 如果参数是零,则结果是 Float.MIN_VALUE。

声明

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

public static float nextUp(float d)

参数

d − 起始浮点值

返回值

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

异常

示例:获取正浮点值的下一个值

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

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

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

输出

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

Math.nextUp(154.28764)=154.28766

示例:获取零浮点值的下一个值

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

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

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

输出

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

Math.nextUp(0.0)=1.4E-45

示例:获取负浮点值的下一个值

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

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

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

输出

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

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