java.lang.StrictMath.getExponent(double d)方法範例


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

  • 如果引數為NaN或無窮大,那麼結果是 Double.MAX_EXPONENT + 1.
  • 如果引數是零或低於正常值,那麼結果是 Double.MIN_EXPONENT -1.

宣告

以下是java.lang.StrictMath.getExponent()方法的宣告

public static int getExponent(double d)

引數

  • d -- 這是double值。

返回值

此方法返回double代表使用的無偏指數。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.getExponent()方法的使用。

package com.yiibai;

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