当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。