What is the maximum number of digits we can have after the decimal point of a BigDecimal value in Java?
|
|
||||
|
|
|
It's (almost) unlimited. You can store roughly 2 billion digits after the decimal point if scale is set to the maximum value of an integer, although you may run out of memory if you try to do this. If you need to store so many digits that the limit is a problem then you probably need to rethink the design of your program. See the BigDecimal documentation:
|
||||
|
|
|
According to what is mentioned in the BigDecimal Java 2 Platform Standard Ed. 5.0:
According to Java's implementation of 32-bit integers:
This means that for zero or positive scale numbers you have 2,147,483,647 digits to the right of the decimal point. For negative scale numbers, you have unscaledValue shifted to the right of the decimal point by 2,147,483,648 digits. |
|||
|
|