當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java BigDecimal toBigInteger()用法及代碼示例


java.math.BigDecimal.toBigInteger()是jav中的內置方法,可將BigDecimal轉換為BigInteger。此轉換類似於將原語從雙精度變窄為長型。此BigDecimal的任何小數部分將被丟棄。此轉換可能會丟失有關BigDecimal值的精度的信息。

注意:如果轉換中引發的異常不精確(換句話說,如果丟棄了非零小數部分),請使用toBigIntegerExact()方法。

用法:


public BigInteger toBigInteger()

參數:此方法不接受任何參數。

返回值:此方法返回轉換為BigInteger的BigDecimal對象的值。

例子:

Input: (BigDecimal) 123.321
Output: (BigInteger) 123

Input: (BigDecimal) 123.001
Output: (BigInteger) 123

以下示例程序旨在說明上述方法的用法方式:
示例1:

// Program to demonstrate toBigInteger() method of BigDecimal  
  
import java.math.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Assigning the BigDecimal b 
        BigDecimal b = new BigDecimal("123.321"); 
  
        // Assigning the BigInteger value of  BigDecimal b to  BigInteger i 
        BigInteger i = b.toBigInteger(); 
  
        // Print i value 
        System.out.println("BigInteger value of " + b + " is " + i); 
    } 
}
輸出:
BigInteger value of 123.321 is 123

示例2:

// Program to demonstrate toBigInteger() method of BigDecimal  
  
import java.math.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Assigning the BigDecimal b 
        BigDecimal b = new BigDecimal("123.001"); 
  
        // Assigning the BigInteger value of  BigDecimal b to  BigInteger i 
        BigInteger i = b.toBigInteger(); 
  
        // Printing i value 
        System.out.println("BigInteger value of " + b + " is " + i); 
    } 
}
輸出:
BigInteger value of 123.001 is 123

參考: https://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#toBigInteger()



相關用法


注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 BigDecimal toBigInteger() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。