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