Java StrictMath getExponent()方法

java.lang.StrictMath.getExponent(float f) 方法返回一个浮点数表示所使用的无偏指数。它包括了一些情况:

  • 如果参数为NaN或无穷大,那么结果是Float.MAX_EXPONENT+1。
  • 如果参数是零或小于正常值,那么结果是Float.MIN_EXPONENT-1。

1 语法

public static int getExponent(float f)

2 参数

f : 这是一个float值

3 返回值

该方法返回一个浮点数表示所使用的无偏指数。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath getExponent()方法
 */
import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    float f1 = 32 , f2 = 1024;

    // returns the unbiased exponent used in the representation of a float
    double exponentValue = StrictMath.getExponent(f1);
    System.out.println("Exponent value of " + f1 + " = " + exponentValue);

    exponentValue = StrictMath.getExponent(f2);
    System.out.println("Exponent value of " + f2 + " = " + exponentValue);
  }
}

输出结果为:

Exponent value of 32.0 = 5.0
Exponent value of 1024.0 = 10.0

 

热门文章

优秀文章