Java Math BigDecimal.toBigIntegerExact() 方法


Java Math BigDecimal.toBigIntegerExact() 方法

package com.codingdict;



import java.math.*;



public class BigDecimalDemo {



   public static void main(String[] args) {



      // create a BigDecimal object

      BigDecimal bg1;



      // create a BigInteger object

      BigInteger i1;



      bg1 = new BigDecimal("2426");



      // assign the BigIntegerExact value of bg1 to i1

      i1 = bg1.toBigIntegerExact();



      String str = "BigInteger value of " + bg1 + " is " + i1;



      // print i1 value

      System.out.println( str );

   }

}