I have read on java site to use BigDecimal for currencies.
http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html
But what rounding mode we should use with? which is the most appropriate one and most widely us
|
I have read on java site to use But what rounding mode we should use with? which is the most appropriate one and most widely us |
||||
|
|
|
There is no "correct" mode, it depends on the business case. Examples:
The documentation of RoundingMode contains a lot of examples how the different modes work. To get a better answer, you must tell us what you want to achieve. That said, |
|||
|
|
|
Most of the time The default is HALF_EVEN which happens to be a good choice. This algorithm is known as bankers' rounding (see discussion here). Another common strategy is HALF_UP which is more intuitive but has slightly worse statistical characteristics. Also note that in many times (especially in banking and insurances) the rounding strategy will be dictated by business requirements, often different for various use-cases. |
|||
|
|
|
Typically you'd use "half up" rounding, like so:
This way, you'll round to two decimal places (which most currencies use, e.g. dollars and cents, obviously there are exceptions), and you'll round values such that half a cent or more will round up while less than half a cent will round down. See the javadoc for more details. |
||||
|
|
|
For the financial applications ROUND_HALF_EVEN is the most common rounding mode. That mode avoids bias. But for display you should use NumberFormat class. This class will take care of localization issues for amounts in different currencies. But NumberFormat accepts primitives only. So use last one if you can accept small accuracy change in transformations to a double. |
|||
|
|
|
You should never use a decimal type for currencies. Use an integer type. This maintains accuracy buy avoiding rounding error associated with floats When display an amount then divide by the appropriate factor to get the non-integral portion. |
|||||||||||||||||||||
|