Java StrictMath getExponent()方法

java.lang.StrictMath.getExponent(double d) 方法返回的double代表使用的无偏指数。它包括了一些情况:

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

1 语法

public static int getExponent(double d)

2 参数

d : 这是double值。

3 返回值

此方法返回double代表使用的无偏指数。

4 示例 

package com.yiidian;

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

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 16.2 , d2 = 512.3;

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

输出结果为:

Exponent value of 16.2 = 4.0
Exponent value of 512.3 = 9.0

 

热门文章

优秀文章