Java.lang.Math.nextUp() 方法

描述

java.lang.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 − 开始浮点数


返回值

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


异常

NA


示例

下面的例子展示了 lang.Math.nextUp() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two float numbers
      float x = 98759.765f;
      float y = 154.28764f;
   
      // print the next floating numbers towards positive infinity
      System.out.println("Math.nextUp(" + x + ")=" + Math.nextUp(x));
      System.out.println("Math.nextUp(" + y + ")=" + Math.nextUp(y));
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

Math.nextUp(98759.765f)=98759.77
Math.nextUp(154.28764f)=154.28766