Java.math.BigInteger.floatValue() 方法

描述

java.math.BigInteger.floatValue() 将此 BigInteger 转换为浮点数。 这种转换类似于从 double 到 float 的窄化原始转换。

如果这个 BigInteger 的幅度太大而无法表示为浮点数,它将酌情转换为 Float.NEGATIVE_INFINITY 或 Float.POSITIVE_INFINITY。 即使返回值是有限的,这种转换也会丢失有关 BigInteger 值精度的信息。


声明

以下是 java.math.BigInteger.floatValue() 方法的声明。

public float floatValue()

指定者

Number 类中的

floatValue。


参数

NA


返回值

此方法返回此 BigInteger 转换为浮点数。


异常

NA


示例

下面的例子展示了 math.BigInteger.floatValue() 方法的使用。

package com.tutorialspoint;

import java.math.*;

public class BigIntegerDemo {

   public static void main(String[] args) {

      // create 2 BigInteger objects
      BigInteger bi1, bi2;

      // create 2 Float objects
      Float f1, f2;

      // assign values to bi1, bi2
      bi1 = new BigInteger("123");
      bi2 = new BigInteger("-123");

      // assign float values of bi1, bi2 to f1, f2
      f1 = bi1.floatValue();
      f2 = bi2.floatValue();

      String str1 = "Float value of " + bi1 + " is " +f1;
      String str2 = "Float value of " + bi2 + " is " +f2;

      // print f1, f2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

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

Float value of 123 is 123.0
Float value of -123 is -123.0