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


Java Java.lang.Float.intBitsToFloat()用法及代碼示例



描述

這個java.lang.Float.intBitsToFloat() 方法返回對應於給定位表示的浮點值。根據 IEEE 754 浮點 "single format" 位布局,該參數被認為是浮點值的表示。它包括以下要點 -

  • 如果參數為 0x7f800000,則結果為正無窮大。
  • 如果參數為 0xff800000,則結果為負無窮大。
  • 如果參數是 0x7f800001 到 0x7fffffff 範圍內或 0xff800001 到 0xffffffff 範圍內的任何值,則結果為 NaN。

聲明

以下是聲明java.lang.Float.intBitsToFloat()方法

public static float intBitsToFloat(int bits)

參數

bits- 這是一個整數。

返回值

此方法返回具有相同位模式的浮點值。

異常

NA

示例

下麵的例子展示了 java.lang.Float.intBitsToFloat() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class FloatDemo {

   public static void main(String[] args) {

      Float f = new Float("2.50f");
   
      /* returns the floating-point value with the same bit pattern */
      System.out.println(f.intBitsToFloat(123));
      System.out.println(f.intBitsToFloat(0x7f800000));  
      System.out.println(f.intBitsToFloat(0xff800000));  
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

1.72E-43
Infinity
-Infinity

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Float.intBitsToFloat() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。