位置:首页 > Java技术 > java.lang > java.lang.StrictMath.ulp(float f)方法实例

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