Java - StrictMath getExponent(float) 方法



描述

Java StrictMath getExponent(float f) 方法返回用于表示浮点数的无偏指数。特殊情况 -

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

  • 如果参数是零或非规格化数,则结果为 Float.MIN_EXPONENT -1。

声明

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

public static int getExponent(float f)

参数

f − 浮点数值

返回值

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

异常

获取用于表示正浮点数的无偏指数示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a float number
      float x = 60984.1f;

      // 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 float number
      float x = 0.0f;

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

输出

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

StrictMath.getExponent(0.0)=-127

获取用于表示负浮点数的无偏指数示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a float number
      float x = -497.99f;

      // 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
广告