Java bigdecimal class longValue() method transforms bigdecimal value exactly in to long type values.
Java BigDecimal longValue example
Java bigdecimal class longValue() method transforms bigdecimal value exactly in to long type values. Method throws NumberFormatException if it finds a String bigdecimal value instead of a integer or double value. In the example four bigdecimal class objects namely: risk_0, risk_1, risk_2 & risk_3 respectively have been created.
In the example along with method generated result, original bigdecimal
value is also shown.
Syntax for using the method: public long longValue()
System.out.println(bigdecimal_objectName.longValue());
or
long ln = (this.object).longValue();
Java_BigDecimal_longValue.java
import java.math.BigDecimal;
|