当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.Math.getExponent()用法及代码示例



描述

这个java.lang.Math.getExponent(double d)返回用于表示 double 的无偏 index 。特殊情况 -

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

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

声明

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

public static int getExponent(double d)

参数

d− 双重值

返回值

此方法返回参数的无偏 index

异常

NA

示例

下面的例子展示了 lang.Math.getExponent() 方法的用法。

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Math.getExponent() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。