Java.lang.StrictMath.nextUp() 方法

描述

java.lang.StrictMath.nextUp(double d) 方法返回在正无穷方向上与 d 相邻的浮点值。 此方法在语义上等同于 nextAfter(d, Double.POSITIVE_INFINITY)。nextUp 实现可能比其等效的 nextAfter 调用运行得更快。 它包括这些情况 −

  • 如果任一参数是 NaN,则返回 NaN。
  • 如果参数为正无穷大,则结果为正无穷大。
  • 如果参数为零,则结果为 Double.MIN_VALUE

声明

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

public static double nextUp(double d)

参数

d − 这是起始浮点值。


返回值

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


异常

NA


示例

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

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = 95.1200000000000 , d2 = 49.32;
   
      // returns the floating-point value adjacent to d1
      double nextUpValue = StrictMath.nextUp(d1); 
      System.out.println("Next upper value of d1 : " + nextUpValue);

      // returns the floating-point value adjacent to d2
      nextUpValue = StrictMath.nextUp(d2); 
      System.out.println("Next upper value of d2 : " + nextUpValue);
   }
}

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

Next upper value of d1 : 95.12000000000002
Next upper value of d2 : 49.32000000000001