Java - StrictMath getExponent(double) 方法



描述

Java StrictMath getExponent(double d) 方法返回用于表示双精度浮点数的无偏指数。特殊情况:

  • 如果参数是 NaN 或无穷大,则结果为 Double.MAX_EXPONENT + 1。

  • 如果参数是零或次正规数,则结果为 Double.MIN_EXPONENT - 1。

声明

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

public static int getExponent(double d)

参数

d − 双精度浮点值

返回值

此方法返回参数的无偏指数

异常

获取正双精度浮点数的无偏指数示例

以下示例演示了 StrictMath getExponent() 方法的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 60984.1;

      // print the unbiased exponent of the number
      System.out.println("StrictMath.getExponent(" + x + ")=" + StrictMath.getExponent(x));
   }
}

让我们编译并运行上面的程序,这将产生以下结果:

StrictMath.getExponent(60984.1)=15

获取零双精度浮点数的无偏指数示例

以下示例演示了 StrictMath getExponent() 方法在零值上的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

      // print the unbiased exponent of the number
      System.out.println("StrictMath.getExponent(" + x + ")=" + StrictMath.getExponent(x));
   }
}

让我们编译并运行上面的程序,这将产生以下结果:

StrictMath.getExponent(0.0)=-1023

获取负双精度浮点数的无偏指数示例

以下示例演示了 StrictMath getExponent() 方法在负数上的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = -497.99;

      // print the unbiased exponent of the number
      System.out.println("StrictMath.getExponent(" + x + ")=" + StrictMath.getExponent(x));
   }
}

让我们编译并运行上面的程序,这将产生以下结果:

StrictMath.getExponent(-497.99)=8
java_lang_strictmath.htm
广告