What is the difference between Decimal, Float and Double in C#?

When would someone use one of these?

link|improve this question
10  
Thanks for asking this question. Skeet's answer helped clarify this for me. – AndHeCodedIt Jun 28 '11 at 15:47
feedback

9 Answers

up vote 383 down vote accepted

float and double are floating binary point types. In other words, they represent a number like this:

10001.10010110011

The binary number and the location of the binary point are both encoded within the value.

decimal is a floating decimal point type. In other words, they represent a number like this:

12345.65789

Again, the number and the location of the decimal point are both encoded within the value - that's what makes decimal still a floating point type instead of a fixed point type.

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:

  • For values which are "naturally exact decimals" it's good to use decimal. This is usually suitable for any concepts invented by humans: financial values are the most obvious example, but there are others too. Consider the score given to divers or ice skaters, for example.

  • For values which are more artefacts of nature which can't really be measured exactly anyway, float/double are more appropriate. For example, scientific data would usually be represented in this form. Here, the original values won't be "decimally accurate" to start with, so it's not important for the expected results to maintain the "decimal accuracy". Floating binary point types are much faster to work with than decimals.

link|improve this answer
4  
This is a great answer. – cgreeno Mar 6 '09 at 12:16
3  
Great explaination.. – ydobonmai May 16 '10 at 6:43
56  
Skeet explanation. – ibz Oct 26 '10 at 9:02
2  
New link to referenced article: csharpindepth.com/Articles/General/FloatingPoint.aspx Also, csharpindepth.com/Articles/General/Decimal.aspx explains the decimal type. – Nathan Feb 3 '11 at 22:02
2  
Artefact? H'uh. I never realized Jon Skeet was from across the pond until I read this. – Adam Nofsinger Mar 9 '11 at 14:54
show 1 more comment
feedback

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.

link|improve this answer
10  
+1 for the link to performance considerations – Les Mar 6 '09 at 13:23
1  
This answer needs to be corrected. Precision for Decimal is not 128 bits but infinite because the format is essentially different from float. @Skeet answer is the best. Example: 0.1 = 0.099999.... in float but in decimal it is 0.l, that is infinite precision. If you were to use 128 bits precision like in floats, you would get 0.999999....(upto 29 digits) but that is still not precise as decimal 0.1 – The crocodile hunter Nov 21 '11 at 18:23
3  
@Thecrocodilehunter: sorry, but no. Decimal can represent all numbers that can be represented in decimal notation, but not 1/3 for example. 1.0m / 3.0m will evaluate to 0.33333333... with a large but finite number of 3s at the end. Multiplying it by 3 will not return an exact 1.0. – Erik P. Nov 29 '11 at 21:14
This is a fault with the number itself ( 0.3333... in this case), not its decimal representation where it is produced 100% faithfully. When you introduced an error in the number, no body can remove it (not even decimal numbers). The only way to remove error from this number is to use 1/3 not 0.333. Some calculator might take 1/3 as mid value but most of them don't. Try this: represent 0.3333 in floating point, you will end up with 0.3332999998..., this is not 0.3333 (you see the error). Now represent this in decimal it is 0.3333 (exactly as it is, no error - 100% accurate). – The crocodile hunter Nov 29 '11 at 22:13
3  
@Thecrocodilehunter: I think you're confusing accuracy and precision. They are different things in this context. Precision is the number of digits available to represent a number. The more precision, the less you need to round. No data type has infinite precision. – Igby Largeman Jan 6 at 17:42
show 7 more comments
feedback

float is a single precision (32 bit) floating point data type as defined by IEEE 754 (it is used mostly in graphic libraries).

double is a double precision (64 bit) floating point data type as defined by IEEE 754 (probably the most normally used data type for real values).

decimal is a 128-bit floating point data type, it should be used where precision is of extreme importance (monetary calculations).

link|improve this answer
Actually, decimal is not a floating-point data type. – Tor Haugen Mar 6 '09 at 11:39
11  
Technically, it is a floating point data type as it stores exponent and mantissa. – Mehrdad Afshari Mar 6 '09 at 11:41
6  
+1 for Mehrdad's comment. It's a floating decimal point type rather than a float binary point type. – Jon Skeet Mar 6 '09 at 11:46
1  
Keep in mind also, that float and double (as defined by the IEEE) can represent Infinity, Negative Infinity, and NaN (all useful in abstract math) whereas decimal (geared towards business math) can not. – BrainSlugs83 Jun 23 '11 at 19:35
feedback

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.

link|improve this answer
7  
What do you mean of 100% accurate?! Theoretically, computers can't store 100% precision of many real numbers. – Mehrdad Afshari Mar 6 '09 at 11:44
2  
+1 to Mehrdad's comment again. How exactly is 1m/3m "100% accurate" for example? – Jon Skeet Mar 6 '09 at 11:47
@Mystere is right - float and doubles are not 100% accurate because it uses base 2 vs decimal that internally uses base 10 – cgreeno Mar 6 '09 at 11:50
4  
BtBh: I didn't dispute that. However, Decimal is not accurate either. Theoretically, computers can only store finite representation of things. This is not something anybody can change. – Mehrdad Afshari Mar 6 '09 at 11:51
4  
Decimal floating point numbers aren't any more (or any less!) accurate than binary floating point numbers. They just match our naive expectations better, because they use base-10 instead of base-2. – Joachim Sauer Mar 6 '09 at 12:26
show 1 more comment
feedback

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:

  • A certain loss of precision is acceptable in many scientific calculations because of the practical limits of the physical problem or artifact being measured. Loss of precision is not acceptable in finance.
  • Decimal is much (much) slower than float and double for most operations, primarily because floating point operations are done in binary, whereas Decimal stuff is done in base 10 (i.e. floats and doubles are handled by the FPU hardware, such as MMX/SSE, whereas decimals are calculated in software).
  • Decimal has an unacceptably smaller value range than double, despite the fact that it supports more digits of precision. Therefore, Decimal can't be used to represent many scientific values.
link|improve this answer
+1 for pointing out that doubles have a higher range. – swejtsys Jan 1 at 0:52
feedback

float 7 digits of precision

double has about 15 digits of precision

decimal has about 28 digits of precision

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

link|improve this answer
feedback
  1. Double and float can be divided by integer zero without an exception at both compilation and run time.
  2. Decimal cannot be divided by integer zero. Compilation will always fail if you do that.
link|improve this answer
2  
They sure can! They also also have a couple of "magic" values such as Infinity, Negative Infinity, and NaN (not a number) which make it very useful for detecting vertical lines while computing slopes... Further, if you need to decide between calling float.TryParse, double.TryParse, and decimal.TryParse (to detect if a string is a number, for example), I recommend using double or float, as they will parse "Infinity", "-Infinity", and "NaN" properly, whereas decimal will not. – BrainSlugs83 Jun 23 '11 at 19:29
feedback

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.

Microsoft.Office.Interop.Excel.Range cell = ...
object cellValue = cell.Value2;
if (cellValue != null)
{
    decimal value = 0;
    Decimal.TryParse(cellValue.ToString(), out value);
}

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:

  • cellValue = 0.00006317592

  • Decimal.TryParse(cellValue.ToString(), out value); would return 0

The solution, bizarrely, was to convert the Excel values into a double first, and then into a decimal.

Microsoft.Office.Interop.Excel.Range cell = ...
object cellValue = cell.Value2;
if (cellValue != null)
{
    double valueDouble = 0;
    double.TryParse(cellValue.ToString(), out valueDouble);
    decimal value = (decimal)valueDouble;
    ...
}

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.

link|improve this answer
feedback

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 myFloat; double myDouble;

(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: double myDouble;

myDouble = 0.007;

MessageBox.Show(myDouble.ToString()); Halt your programme and return to the coding window. Change this line:

myDouble = 0.007; myDouble = 12345678.1234567;

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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown