Java.math.BigDecimal.toBigInteger()方法實例
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