Java - Float floatToIntBits() 方法



描述

Java Float floatToIntBits() 方法根据 IEEE 754 浮点“单精度格式”位布局返回指定浮点值的表示形式。它包括以下要点:

  • 如果参数是正无穷大,则结果为 0x7f800000。
  • 如果参数是负无穷大,则结果为 0xff800000。
  • 如果参数是 NaN,则结果为 0x7fc00000。

声明

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

public static int floatToIntBits(float value)

参数

value − 这是一个浮点数。

返回值

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

异常

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

以下示例演示了如何使用 Float floatToIntBits() 方法获取给定正浮值的 int 位格式。我们用给定的正浮值初始化了一个 Float 对象。然后使用 floatToIntBits() 方法,我们将它的值以 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.floatToIntBits(d));  
   }
} 

输出

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

Value = 1098173645

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

以下示例演示了如何使用 Float floatToIntBits() 方法获取给定负浮值的 int 位格式。我们用给定的负浮值初始化了一个 Float 对象。然后使用 floatToIntBits() 方法,我们将它的值以 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.floatToIntBits(d));  
   }
} 

输出

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

Value = -1049310003

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

以下示例演示了如何使用 Float floatToIntBits() 方法获取给定零浮值的 int 位格式。我们用给定的正零浮值初始化了一个 Float 对象。然后使用 floatToIntBits() 方法,我们将它的值以 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.floatToIntBits(d));  
   }
} 

输出

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

Value = 0

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

以下示例演示了如何使用 Float floatToIntBits() 方法获取给定负零浮值的 int 位格式。我们用给定的正浮值初始化了一个 Float 对象。然后使用 floatToIntBits() 方法,我们将它的值以 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.floatToIntBits(d));  
   }
} 

输出

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

Value = -2147483648
java_lang_float.htm
广告