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;
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java BigDecimal longValue example
Post your Comment