I keep seeing people using doubles in C#. I know I read somewhere that doubles sometimes lose precision. My question is when should a use a double and when should I use a decimal type? Which type is suitable for money computations? (ie. greater than $100 million)
feedback
|
|
For money, always decimal. It's why it was created. If numbers must add up correctly or balance, use decimal. This includes any financial storage or calculations, scores, or other numbers that people might do by hand. If the exact value of numbers is not important, use double for speed. This includes graphics, physics or other physical sciences computations where there is already a "number of significant digits". | |||||||||
feedback
|
decimal, decimal, decimal Accept no substitutes. The most important factor is that | |||||
feedback
|
|
For money: | ||||
|
feedback
|
|
Decimal is for exact values. Double is for approximate values.
| |||
|
feedback
|
|
There is a question on MSDN that has a pretty good explanation of the differences between decimal and double. | |||
|
feedback
|
|
System.Single / float - 7 digits The way I've been stung by using the wrong type a good few years ago is with large amounts:
You run out at 1 million for a float. A 15 digit monetary value:
9 trillion with a double. But with division and comparisons it's more complicated (I'm definitely no expert in floating point and irrational numbers - see Marc's point). Mixing decimals and doubles causes issues:
When should I use double instead of decimal? has some similar and more in depth answers. Using | ||||
|
feedback
|
|
Definately use integer types for your money computations. This cannot be emphasized enough, since at first glance it might seem that a floating point type is adequate. Here an example in python code:
looks pretty normal. Now try this again with 10^20 Zimbabwe dollars
As you can see, the dollar disappeared. If you use the integer type, it works fine:
| |||||
feedback
|
|
I think that the main difference beside bit width is that decimal has exponent base 10 and dobule has 2 http://software-product-development.blogspot.com/2008/07/net-double-vs-decimal.html | |||
|
feedback
|