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


Java Math getExponent()用法及代碼示例


java.lang.Math.getExponent()返回在double或float表示中使用的無偏 index 。注意:

  • 如果參數為NaN或double或float類型的無限,則結果為(Double.MAX_EXPONENT +1)或(Float.MAX_EXPONENT +1)。
  • 如果參數為零或double或float類型的子範數,則結果為(Double.MIN_EXPONENT -1)或(Float.MIN_EXPONENT -1)。

用法:

public static int getExponent(DataType a)
參數:
a:an argument of double or float type
返回:
This method returns the unbiased exponent of the argument.
// Java program to demonstrate working 
// of java.lang.Math.getExponent() method 
import java.lang.Math; 
  
class Gfg { 
  
    // driver code 
    public static void main(String args[]) 
    { 
        double a = 345.65; 
        double b = 1.0 / 0; 
        double c = 0; 
  
        // Input double value 
        // Output unbiased exponent of it 
        System.out.println(Math.getExponent(a)); 
  
        // Input Infinity 
        // Output (Double.MAX_EXPONENT + 1) 
        System.out.println(Math.getExponent(b)); 
  
        // Input Zero 
        // Output (Double.MIN_EXPONENT - 1) 
        System.out.println(Math.getExponent(c)); 
  
        float d = 237.2f; 
        float e = 1.0f / 0; 
        float f = 0f; 
  
        // Input float value 
        // Output unbiased exponent of it 
        System.out.println(Math.getExponent(d)); 
  
        // Input Infinity 
        // Output (Float.MAX_EXPONENT + 1) 
        System.out.println(Math.getExponent(e)); 
  
        // Input Zero 
        // Output (Float.MIN_EXPONENT - 1) 
        System.out.println(Math.getExponent(f)); 
    } 
}

輸出:

8
1024
-1023
7
128
-127


相關用法


注:本文由純淨天空篩選整理自Niraj_Pandey大神的英文原創作品 Java Math getExponent() method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。