java.lang.StrictMath.getExponent(float f) 方法返回一個浮點數表示所使用的無偏指數。它包括了一些情況:
以下是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