So I've always been told NEVER to do this, and this time I pose the question to you: why? I'm sure there is a very good reason, I simply do not know what it is. :-P
feedback
|
|
Because floats and doubles cannot accurately represent most base 10 real numbers. This is how an IEEE-754 floating-point number works: it dedicates a bit for the sign, a few bits to store an exponent, and the rest for the actual fraction. This leads to numbers being represented in a form similar to Certain real decimal numbers cannot be represented exactly in base two. For instance, you simply cannot store | |||||||||||
feedback
|
|
From Bloch, J., Effective Java, 2nd ed, Item 48:
| |||
|
feedback
|
|
Floats and doubles are approximate. If you create a BigDecimal and pass a float into the constructor you see what the float actually equals:
this probably isn't how you want to represent $1.01. The problem is that the IEEE spec doesn't have a way to exactly represent all fractions, some of them end up as repeating fractions so you end up with approximation errors. Since accountants like things to come out exactly to the penny, and customers will be annoyed if they pay their bill and after the payment is processed they owe .01 and they get charged a fee or can't close their account, it's better to use exact types like decimal (in C#) or java.lang.BigDecimal in Java. It's not that the error isn't controllable if you round. It's just easier not to have to round in the first place. Most applications that handle money don't call for a lot of math, the operations consist of adding things or allocating amounts to different buckets. Introducing floating point and rounding just complicates things. | |||||||||||||||
feedback
|
|
I prefer using Integer or Long to represent currency. BigDecimal junks up the source code too much. You just have to know that all your values are in cents. Or the lowest value of whatever currency you're using. | |||
|
feedback
|
|
See this SO question: Rounding Errors? | |||
|
feedback
|
|
What about using a double, and storing the number of pennies, or some particular fraction of a cent? If all transactions involve an integer number of pennies (or whatever fraction is used), the value will be precise. If some transactions involve weird fractions (e.g. interest payments, discounts, etc.) it may not be practical to store the "true" value precisely in any type of container, so one will have to deal with rounding issues. How is 'double' worse than any other type? | |||||||||||
feedback
|