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


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


java.math.BigDecimal.toBigIntegerExact()是Java中的一種內置方法,可將BigDecimal轉換為BigInteger,以檢查丟失的信息。如果此BigDecimal具有非零小數部分,則將引發異常。

用法:

public BigInteger toBigIntegerExact()

參數:該方法不帶任何參數。


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

例子:

Input: (BigDecimal) 1213
Output: (BigInteger) 1213

Input: (BigDecimal) 12785412
Output: (BigInteger) 12785412

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

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

示例2:

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


相關用法


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