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