float floatValue()

优质
小牛编辑
127浏览
2023-12-01

描述 (Description)

java.math.BigInteger.floatValue()将此BigInteger转换为float。 此转换类似于从double到float的缩小基元转换。

如果此BigInteger的大小太大而无法表示为float,则会根据需要将其转换为Float.NEGATIVE_INFINITY或Float.POSITIVE_INFINITY。 即使返回值是有限的,此转换也可能会丢失有关BigInteger值精度的信息。

声明 (Declaration)

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

public float floatValue()

指定 (Specified by)

Number floatValue。

参数 (Parameters)

NA

返回值 (Return Value)

此方法返回此BigInteger转换为float。

异常 (Exception)

NA

例子 (Example)

以下示例显示了math.BigInteger.floatValue()方法的用法。

package cn.xnip;
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