vote up 1 vote down star

Hi there.

Here's a small snippet of code, when called it outputs 'double'. Why? What's the reasoning behind this. Why doesn't it print 'float'?

class source
{

    static void Main()
    {
        Receiver r = new Receiver();


        r.Method1(1.1);
    }

}

class Receiver
{
    public virtual void Method1(double f) { Debug.Print("double"); }
    public virtual void Method1(float f) { Debug.Print("float"); }
}

TIA

flag

got it, thanks guys for the enlightenment – 2009MIPS Oct 12 at 22:24
this might also have to do with narrow & widening conversions and to be safe defaults to double – 2009MIPS Oct 12 at 22:29
1  
The reason why "double" is the default is because (1) double is far, far more precise, and (2) double is almost never slower than float, and is sometimes faster. Why is it faster? Because the chip that does floating point arithmetic almost always does all internal operations in doubles; operations on floats need to convert the floats to doubles, do the operation in doubles, and then change it back to floats when its done. Unless you are going to be allocating millions of these guys, you are almost certainly NOT memory constrained by the doubles, so use them instead of floats. – Eric Lippert Oct 13 at 6:56
awesome, thanks eric for the insight. – 2009MIPS Oct 13 at 17:43

2 Answers

vote up 11 vote down check

To specify float call like this:

r.Method1(1.1f);

Otherwise it'll default to double, like you observed.

Here's a porition of the MSDN documentation on double that explains why:

By default, a real numeric literal on the right-hand side of the assignment operator is treated as double.

link|flag
thanks jay but why does it default to double? – 2009MIPS Oct 12 at 22:19
By design. See my edit. – Jay Riggs Oct 12 at 22:20
vote up 4 vote down

double is the default type for non integers. So 1.1 is a double, 1.1m is a decimal and 1.1F is a float.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.