Why this is an Error ?

float (^isFloat)(float) = ^(float d)
{
    return d*2.0;
};

At the sometime, the following is error free,

float (^isFloat)(float) = ^(float d)
{
    return d;
};

PLease help me understand.

link|improve this question

2  
What error message is reported? – Stephen Canon Jan 30 at 21:30
feedback

1 Answer

up vote 9 down vote accepted

Because your return type on the first block is incorrect.

You defined the block to return a float, but you multiplied a float by a double. If you change it to d * 2.0f everything should work just fine.

link|improve this answer
4  
To add: Floating-point constants are doubles unless specified otherwise. – Wevah Jan 30 at 19:20
beauty. Very nice to know that we have to add the f in the end. Thanks a lot. – Futur Jan 31 at 7:04
One more question : when its mentioned as "d * 2.0f" what does it mean to the compiler ? Kind of type casting with the f in the end? – Futur Jan 31 at 7:06
feedback

Your Answer

 
or
required, but never shown

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