Does int a = int(); necessarily give me a zero?
How about if int is replaced by char, double, bool or pointer type?
Where is this specified in the language standard, please?
|
Does How about if Where is this specified in the language standard, please? |
|||
|
Yes, the standard guarantees that it gives you zero.
The rules are clearly specified in the standard in section 8.5. I will quote the relevant ones to the Q here: C++03: 8.5 Initializers
Value Initialization & Zero Initialization are defined in 8.5 Para 5 as:
Note: The bold texts are emphasized by me. |
|||||||
|
|
Yes, any built-in type is always initialized to zero when default-initialized. Keep in mind that in most scenarios a built-in type is not default initialized so this won't necessarily print out
|
|||
|
|