Example below demonstrates working of bigdecimal class toBigInteger method. Method default return type is a biginteger class object value.
Example below demonstrates working of bigdecimal class toBigInteger method. Method default return type is a biginteger class object value.Example below demonstrates working of bigdecimal class toBigInteger method. Method default return type is a biginteger class object value. If the bigdecimal object value is 201.0, method will return 201 as biginteger objects cannot hold double type values.
Method generates NumberFormatException, if it finds the bigdecimal value other than integers and double types values.
Syntax for using the method: public
BigInteger toBigInteger()
BigDecimal obj = new BigDecimal(integer);
BigInteger bigInt = new BigDecimal("String");
bigInt = obj.toBigInteger();
System.out.println(bigInt);
Java_bigdecimal_toBigInteger.java
import java.math.BigDecimal;
|
Ads