java.lang.Math.getExponent()方法範例


java.lang.Math.getExponent(double d) 返回double代表使用的無偏指數。特殊情況:

  • 如果引數為NaN或無窮大,那麼結果是Double.MAX_EXPONENT + 1.

  • 如果引數是零或小於正常值,那麼結果是 Double.MIN_EXPONENT -1.

宣告

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

public static int getExponent(double d)

引數

  • d -- 一個double值

返回值

這個方法返回引數的無偏指數

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 60984.1;
      double y = -497.99;

      // print the unbiased exponent of them
      System.out.println("Math.getExponent(" + x + ")=" + Math.getExponent(x));
      System.out.println("Math.getExponent(" + y + ")=" + Math.getExponent(y));
      System.out.println("Math.getExponent(0)=" + Math.getExponent(0));


   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Math.getExponent(60984.1)=15
Math.getExponent(-497.99)=8
Math.getExponent(0)=-127