I've seen code where people initialize float variables like this:
float num = 0.0f;
Is there a significant difference between this and just doing the following below?
float num = 0;
Thanks.. :)
|
I've seen code where people initialize float variables like this:
Is there a significant difference between this and just doing the following below?
Thanks.. :) |
|||||||
|
|
float x = 0 has an implicit typecast from int to float. Depending on the compiler, implicit typecast can require the compiler to generate extra code. |
|||||||||
|
|
It's just considered good practice to initialise a variable with a literal constant of the same type. In this case you have a float variable and you should initialise it with a float literal constant, i.e. |
|||
|
|
|
Probably the reason is that they once wrote something like:
Having debugged that, they swore always to decorate literals sufficiently to get the right type:
In this case, the One you've got into the habit of decorating literals, you might well write:
even though it has exactly the same effect as Of course the author might not have gone through this revelation personally, they might just have inherited the style of someone else who did. I'd just write R.. points out in a comment an another answer that writing 0 also has the benefit that when you change the type of
to:
is probably a bug. Better to use |
||||
|
|
|
Well, strictly speaking, 0 is an integer, so |
|||
|
|
|
Paul R has written the answer. Your second example has an integer initialization value. You should always use an initializer of the same type as the variable that is being initialized. This avoids any conversion at compile time (ideally) or run time (lazy compilers: are any this lazy, though?). And perhaps more importantly, conversion can lead to some strange things in the general case. Here conversion should do exactly what is expected, but it is still good style and avoids a compiler warning. |
|||
|
|
|
I don't see any reason to use this for initialization process. But, for operations involving floating point literals, this would be useful. For example;
Floating point literals without a suffix are considered doubles. So, for this computation, "a" will be type-casted to double and the final answer of RHS evaluation will be a double. During the assignment, the double value of RHS is casted to float and assigned to "b". This would degrade performance if the machine does not have double precision FPU. To avoid this and use float for entire computation. suffixes are used. For example,
|
|||
|
|