What is the difference between Decimal, Float and Double in C#?
When would someone use one of these?
|
|
The binary number and the location of the binary point are both encoded within the value.
Again, the number and the location of the decimal point are both encoded within the value – that's what makes The important thing to note is that humans are used to representing non-integers in a decimal form, and expect exact results in decimal representations; not all decimal numbers are exactly representable in binary floating point – 0.1, for example – so if you use a binary floating point value you'll actually get an approximation to 0.1. You'll still get approximations when using a floating decimal point as well – the result of dividing 1 by 3 can't be exactly represented, for example. As for what to use when:
|
||||
|
|
|
Precision is the main difference. Float - 7 digits (32 bit) Double-15-16 digits (64 bit) Decimal -28-29 significant digits (128 bit) Decimals have much higher precision and are usually used within financial applications that require a high degree of accuracy. Decimals are much slower (up to 20X times in some tests) than a double/float. Decimals and Floats/Doubles cannot be compared without a cast whereas Floats and Doubles can. Decimals also allow the encoding or trailing zeros. |
|||||||||||||||||||||
|
|
|
|||||||||||||||||
|
|
The thing to keep in mind is that both float and double are considered "approximations" of a floating point number. Some floating point numbers cannot be accurately represented by floats or doubles, and you can get weird rouding errors out at the extreme precisions. Decimal doesn't use IEEE floating point representation, it uses a decimal representation that is 100% accurate by doing decimal based math rather than base 2 based math. What this means is that you can trust math to within the accuracy of decimal precision whereas you can't fully trust floats or doubles unless you are very careful. |
|||||||||||||||||||||
|
|
If you need better accuracy (eg: in accounting applications), use double instead of float. In modern CPUs both data types have almost the same performance. The only benifit of using float is they take up less space. Practically matters only if you have got many of them. I found this is interesting. What Every Computer Scientist Should Know About Floating-Point Arithmetic |
||||
|
|
|
The Decimal structure is strictly geared to financial calculations requiring accuracy, which are relatively intolerant of rounding. Decimals are not adequate for scientific applications, however, for several reasons:
|
|||
|
|
|
|||||
|
|
This has been an interesting thread of me, as today, we've just had a nasty little bug, concerning "decimal" having less precision than a "float". In our C# code, we are reading numeric values from an Excel spreadsheet, converting them into a decimal, then sending this decimal back to a Service, to save into a SQL Server database.
Now, for almost all of our Excel values, this worked beautifully. But for some, very small Excel values, using "decimal.TryParse" lost the value completely. One such example:
The solution, bizarrely, was to convert the Excel values into a double first, and then into a decimal.
Even though double has less precision than a decimal, this actually ensured small numbers would still be recognised. For some reason, "double.TryParse" was actually able to retrieve such small numbers, whereas "decimal.TryParse" would set them to zero. Odd. Very odd. |
|||||||
|
|
Integers, as was mentioned, are whole numbers. They can't store the point something, like .7, .42, and .007. If you need to store numbers that are not whole numbers, you need a different type of variable. You can use the double type, or the float type. You set these types of variables up in exactly the same way: instead of using the word int, you type double, or float. Like this:
(Float is short for "floating point", and just means a number with a point something on the end.) The difference between the two is in the size of the numbers that they can hold. For float, you can have up to 7 digits in your number. For doubles, you can have up to 16 digits. To be more precise, here's the official size: float: 1.5 × 10-45 to 3.4 × 1038 double: 5.0 × 10-324 to 1.7 × 10308 Float is a 32-bit number and double is a 64-bit number. Double click your new button to get at the code. Add the following three lines to your button code:
Halt your program and return to the coding window. Change this line:
Run your programme and click your double button. The message box correctly displays the number. Add another number on the end, though, and C# will again round up or down. The moral is, if you want accuracy, careful of rounding! |
||||
|
|