當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。