Is there a difference between 0 and 0.0 in C++? Which should you use for initializing a double?
Thanks
|
|
|
|
|
|
|
A literal |
||||||||||||||||||
|
|
|
One appears to be an integer literal, the other a floating point literal. It really doesn't matter to the compiler whether you initialize floats or doubles with integer literals. In any event the literal will be compiled into some internal representation. I would tend to suggest 0.0 in order to make your intention (to other programmers) explicitly clear. |
||
|
|
|
|
I try to keep my constants type-consistent. 0 for ints. 0.0f or 0.f for float, and 0.0 for double. To me, the most important reason to do this is so the compiler and the programmer see the same thing. If I do this...
...should r be assigned 0 or .5? There's no hesitation if I do this instead...
|
||||
|
|
|
0 is an integer literal. 0.0 is a float. |
||
|