java.lang.StrictMath.ulp(float f)方法範例


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

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

宣告

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

public static float ulp(float f)

引數

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

返回值

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

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    float f1 = 3.71f , f2 = -4.3f, f3 = 0.0f;

    // returns the size of an ulp of the argument      
    float ulpValue = StrictMath.ulp(f1); 
    System.out.println("Size of ulp of " + f1 + " : " + ulpValue);
        
    ulpValue = StrictMath.ulp(f2); 
    System.out.println("Size of ulp of " + f2 + " : " + ulpValue);
        
    ulpValue = StrictMath.ulp(f3); 
    System.out.println("Size of ulp of " + f3 + " : " + ulpValue);
  }
}

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

Size of ulp of 3.71 = 2.3841858E-7
Size of ulp of -4.3 = 4.7683716E-7
Size of ulp of 0.0 = 1.4E-45