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