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


java.lang.StrictMath.ulp(double d) 方法返回引數的ulp的大小。 double值的ulp是該浮點值與下一個數值較大的double值之間的正距離。對於非NaN x, ulp(-x) == ulp(x)。它包括以下情況:

  • 如果引數為NaN,那麼結果為NaN。
  • 如果引數為正或負無窮大,那麼結果為正無窮大。
  • 如果引數為正或負0,那麼結果是Double.MIN_VALUE。
  • 如果引數為±Double.MAX_VALUE,那麼結果等於 2971.

宣告

以下是java.lang.StrictMath.ulp()方法的宣告

public static double ulp(double d)

引數

  • d -- 這是要返回浮點的ulp值。

返回值

此方法返回引數的ulp的大小。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.ulp()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 5.5 , d2 = -2.9, d3 = 0.0;
  
    // returns the size of an ulp of the argument
    double ulpValue = StrictMath.ulp(d1); 
    System.out.println("Size of ulp of " + d1 + " = " + ulpValue);
    
    ulpValue = StrictMath.ulp(d2); 
    System.out.println("Size of ulp of " + d2 + " = " + ulpValue);
    
    ulpValue = StrictMath.ulp(d3); 
    System.out.println("Size of ulp of " + d3 + " = " + ulpValue);
 }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Size of ulp of 5.5 = 8.881784197001252E-16
Size of ulp of -2.9 = 4.440892098500626E-16
Size of ulp of 0.0 = 4.9E-324