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


Java Float floatToIntBits()用法及代碼示例


Float類中的floatToIntBits()方法是Java中的內置函數,它根據IEEE 754浮點“single format”位布局返回指定浮點值的表示形式。

用法:

public static int floatToIntBits(float val)

參數:該方法僅接受一個參數val,該參數指定要轉換為整數位的浮點數。


返回值:該函數返回表示浮點數的整數位。以下是特殊情況:

  • 如果參數為正無窮大,則結果為0x7f800000。
  • 如果參數為負無窮大,則結果為0xff800000。
  • 如果參數為NaN,則結果為0x7fc00000。

以下示例程序旨在說明Float.floatToIntBits()方法的使用:

示例1:

// Java program to demonstrate 
// Float.floatToIntBits() method 
import java.lang.*; 
  
class Gfg1 { 
  
    public static void main(String args[]) 
    { 
  
        float val = 1.5f; 
  
        // function call 
        int answer = Float.floatToIntBits(val); 
  
        // print 
        System.out.println(val + " in int bits: "
                           + answer); 
    } 
}
輸出:
1.5 in int bits: 1069547520

示例2:

// Java program to demonstrate 
// Float.floatToIntBits() method 
  
import java.lang.*; 
  
class Gfg1 { 
  
    public static void main(String args[]) 
    { 
  
        float val = Float.POSITIVE_INFINITY; 
        float val1 = Float.NEGATIVE_INFINITY; 
        float val2 = Float.NaN; 
  
        // function call 
        int answer = Float.floatToIntBits(val); 
  
        // print 
        System.out.println(val + " in int bits: "
                           + answer); 
  
        // function call 
        answer = Float.floatToIntBits(val1); 
  
        // print 
        System.out.println(val1 + " in int bits: "
                           + answer); 
  
        // function call 
        answer = Float.floatToIntBits(val); 
  
        // print 
        System.out.println(val2 + " in int bits: "
                           + answer); 
    } 
}
輸出:
Infinity in int bits: 2139095040
-Infinity in int bits: -8388608
NaN in int bits: 2139095040

參考: https://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#floatToIntBits(float)



相關用法


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