java.math.BigInteger.floatValue() 此BigInteger轉換為浮點數float。這種轉換是類似的double的限制原語轉換。
如果此BigInteger有太大的幅度表示為float值,它會被轉換為Float.NEGATIVE_INFINITY或Float.POSITIVE_INFINITY(如適用)。即使當返回值是有限的,此轉換會丟失關於BigInteger值的精度資訊。
以下是java.math.BigInteger.floatValue()方法的宣告
public float floatValue()
在類 Number 中的floatValue
NA
此方法返回此BigInteger轉換為float。
NA
下面的例子顯示math.BigInteger.floatValue()方法的用法
package com.yiibai; 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