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


Java StrictMath getExponent()用法及代码示例


  1. getExponent(double num)是StrictMath类的内置方法,用于获取要用于给定double参数表示形式的无偏指数。它产生两个特殊结果:
    • 当给定参数为NaN或无穷大时,结果将为Double.MAX_EXPONENT +1。
    • 参数为零时,结果为Double.MIN_EXPONENT – 1。

    用法:

    public static int getExponent(double num)

    参数:该方法接受一个双精度类型的参数num,该参数应找到其无偏指数。

    返回值:该方法返回用于给定double参数表示的无偏指数。


    例子:

    Input: num = 75.45
    Output: 6.0
    
    Input: num = 0.0
    Output: -1023.0
    

    以下示例程序旨在说明java.lang.StrictMath.getExponent()方法:

    // Java praogram to illustrate the 
    // java.lang.StrictMath.getExponent() 
    import java.lang.*; 
      
    public class Geeks { 
      
        public static void main(String[] args) 
        { 
      
            double value = 93.5; 
      
            /* Here it returns the unbiased exponent which   
               is used in the representation of a double*/
            double exp_Value = StrictMath.getExponent(value); 
            System.out.print("Exponent of " + value + " = "); 
            System.out.println(exp_Value); 
        } 
    }
    输出:
    Exponent of 93.5 = 6.0
    
  2. getExponent(float num)是StrictMath类的内置方法,用于获取无偏指数,用在给定float参数的表示中。它产生两个特殊结果:
    • 当给定的参数为NaN或无限时,结果将为Float.MAX_EXPONENT +1。
    • 参数为零时,结果为Float.MIN_EXPONENT – 1。

    用法:

    public static int getExponent(float num)

    参数:此方法接受一个参数num,该参数为float类型,我们要查找其无偏指数。

    返回值:该方法返回用于给定float参数表示形式的无偏指数。

    例子:

    Input: num = 10254.25f
    Output: 13.0
    
    Input: num = 10.25f
    Output: 3.0
    

    以下示例程序旨在说明java.lang.StrictMath.getExponent()方法:

    // Java praogram to illustrate the 
    // java.lang.StrictMath.getExponent() 
    import java.lang.*; 
      
    public class Geeks { 
      
        public static void main(String[] args) 
        { 
      
            float value = 10254.25f; 
      
            /* Here it returns the unbiased exponent which  
               is used in the representation of a float*/
            double exp_Value = StrictMath.getExponent(value); 
            System.out.print("Exponent of " + value + " = "); 
            System.out.println(exp_Value); 
        } 
    }
    输出:
    Exponent of 10254.25 = 13.0
    


相关用法


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