I found BigDecimal have setScale method, but doesn't have getScale method. How to getScale on BigDecimal?
|
|
|
|
|
|
|
You have the scale() (not getScale in this case) method in BigDecimal which returns the scale set by setScale(..). See: http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigDecimal.html#scale() |
||
|
|
|
|
|
||
|
|
|
|
use BigDecimal.scale() |
||
|
|
