java.math.BigDecimal.toBigInteger() 此BigDecimal轉換為BigInteger。這種轉換是類似的限制原語轉換double為long。此BigDecimal的小數部分將被丟棄。此轉換會丟失關於BigDecimal值的精度資訊。
有如果轉換是不精確的異常丟擲(換句話說,如果一個非零小數部分被丟棄),使用toBigIntegerExact()方法。
以下是java.math.BigDecimal.toBigInteger()方法的宣告
public BigInteger toBigInteger()
NA
此方法返回BigDecimal物件轉換為BigInteger的值
NA
下面的例子顯示math.BigDecimal.toBigInteger()方法的用法
package com.yiibai; import java.math.*; public class BigDecimalDemo { public static void main(String[] args) { // create a BigDecimal object BigDecimal bg1; // create a BigInteger object BigInteger i1; bg1 = new BigDecimal("235.738"); // assign the BigInteger value of bg1 to i1 i1 = bg1.toBigInteger(); String str = "BigInteger value of " + bg1 + " is " + i1; // print i1 value System.out.println( str ); } }
讓我們編譯和執行上面的程式,這將產生以下結果:
BigInteger value of 235.738 is 235