Java - Float floatToRawIntBits() 方法



描述

Java Float floatToRawIntBits() 方法根据 IEEE 754 浮点数“单精度格式”位布局返回指定浮点值的表示形式,保留非数字 (NaN) 值。它包含以下要点:

  • 如果参数为正无穷大,则结果为 0x7f800000。

  • 如果参数为负无穷大,则结果为 0xff800000。

  • 如果参数为 NaN,则结果为表示实际 NaN 值的整数。与 floatToIntBits 方法不同,floatToRawIntBits 不会将所有编码 NaN 的位模式折叠为单个“规范”NaN 值。

声明

以下是 java.lang.Float.floatToRawIntBits() 方法的声明

public static int floatToRawIntBits(float value)

参数

value - 这是一个浮点数。

返回值

此方法返回表示浮点数的位。

异常

从具有正值的 Float 对象获取 int 位示例

以下示例演示了如何使用 Float floatToRawIntBits() 方法获取给定正浮点值的 int 位格式。我们已使用给定的正浮点值初始化了一个 Float 对象。然后使用 floatToRawIntBits() 方法,我们以 int 位格式打印其值。

package com.tutorialspoint;
public class FloatDemo {
   public static void main(String[] args) {
      Float d = new Float("15.30");
   
      //returns the bits that represent the floating-point number
      System.out.println("Value = " + Float.floatToRawIntBits(d));  
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Value = 1098173645

从具有负值的 Float 对象获取 int 位示例

以下示例演示了如何使用 Float floatToRawIntBits() 方法获取给定负浮点值的 int 位格式。我们已使用给定的负浮点值初始化了一个 Float 对象。然后使用 floatToRawIntBits() 方法,我们以 int 位格式打印其值。

package com.tutorialspoint;
public class FloatDemo {
   public static void main(String[] args) {
      Float d = new Float("-15.30");
   
      //returns the bits that represent the floating-point number
      System.out.println("Value = " + Float.floatToRawIntBits(d));  
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Value = -1049310003

从具有正零值的 Float 对象获取 int 位示例

以下示例演示了如何使用 Float floatToRawIntBits() 方法获取给定零浮点值的 int 位格式。我们已使用给定的正零浮点值初始化了一个 Float 对象。然后使用 floatToRawIntBits() 方法,我们以 int 位格式打印其值。

package com.tutorialspoint;
public class FloatDemo {
   public static void main(String[] args) {
      Float d = new Float("0.0");
   
      //returns the bits that represent the floating-point number
      System.out.println("Value = " + Float.floatToRawIntBits(d));  
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Value = 0

从具有负零值的 Float 对象获取 int 位示例

以下示例演示了如何使用 Float floatToRawIntBits() 方法获取给定负零浮点值的 int 位格式。我们已使用给定的负零浮点值初始化了一个 Float 对象。然后使用 floatToRawIntBits() 方法,我们以 int 位格式打印其值。

package com.tutorialspoint;
public class FloatDemo {
   public static void main(String[] args) {
      Float d = new Float("-0.0");
   
      //returns the bits that represent the floating-point number
      System.out.println("Value = " + Float.floatToRawIntBits(d));  
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Value = -2147483648
java_lang_float.htm
广告