java.lang.StrictMath.nextUp(double d)方法範例


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.yiibai;

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