位置:首頁 > Java技術 > java.lang > java.lang.StrictMath.getExponent(float f)方法實例

java.lang.StrictMath.getExponent(float f)方法實例

java.lang.StrictMath.getExponent(float f) 方法返回一個浮點數表示所使用的無偏指數。它包括了一些情況:

  • 如果參數為NaN或無窮大,那麼結果是Float.MAX_EXPONENT+1。
  • 如果參數是零或小於正常值,那麼結果是Float.MIN_EXPONENT-1。

聲明

以下是java.lang.StrictMath.getExponent()方法的聲明

public static int getExponent(float f)

參數

  • f -- 這是一個float值

返回值

該方法返回一個浮點數表示所使用的無偏指數。

異常

  • NA

例子

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

package com.yiibai;

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