vote up 0 vote down star

I found BigDecimal have setScale method, but doesn't have getScale method. How to getScale on BigDecimal?

flag

3 Answers

vote up 2 vote down check

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()

link|flag
vote up 2 vote down

BigDecimal.scale():

public int scale()

Returns the scale of this BigDecimal. If zero or positive, the scale is the number of digits to the right of the decimal point. If negative, the unscaled value of the number is multiplied by ten to the power of the negation of the scale. For example, a scale of -3 means the unscaled value is multiplied by 1000.

Returns: the scale of this BigDecimal.

link|flag
vote up 0 vote down

use BigDecimal.scale()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.