java.math.BigDecimal.toBigIntegerExact() 此BigDecimal轉換為BigInteger,檢查丟失的資訊。丟擲一個異常,如果此BigDecimal具有非零小數部分。
以下是java.math.BigDecimal.toBigIntegerExact()方法的宣告
public BigInteger toBigIntegerExact()
NA
此方法返回BigDecimal物件轉換為BigInteger的值
ArithmeticException - 如果具有非零小數部分
下面的例子顯示math.BigDecimal.toBigIntegerExact()方法的用法
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("2426"); // assign the BigIntegerExact value of bg1 to i1 i1 = bg1.toBigIntegerExact(); String str = "BigInteger value of " + bg1 + " is " + i1; // print i1 value System.out.println( str ); } }
讓我們編譯和執行上面的程式,這將產生以下結果:
BigInteger value of 2426 is 2426