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