📜  Java中的 BigDecimal toBigIntegerExact() 方法

📅  最后修改于: 2022-05-13 01:55:42.437000             🧑  作者: Mango

Java中的 BigDecimal toBigIntegerExact() 方法

Java.math.BigDecimal.toBigIntegerExact()是Java中的一个内置方法,可将此 BigDecimal 转换为 BigInteger,检查丢失的信息。如果此 BigDecimal 具有非零小数部分,则会引发异常。

句法:

public BigInteger toBigIntegerExact()

参数:该方法不带任何参数。

返回值:此方法返回 BigDecimal 对象转换为 BigInteger 的值。

例子:

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

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

下面的程序说明了上述方法的工作:
方案一:

// 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

方案二:

// 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