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


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