What do the following phrases mean in C++:
zero-initialization,
default-initialization, and
value-initialization?
What should a C++ developer know about them?
|
What do the following phrases mean in C++:
What should a C++ developer know about them? |
|||||||||||
|
|
One thing to realize is that 'value-initialization' is new with the C++ 2003 standard - it doesn't exist in the original 1998 standard (I think it might be the only difference that's more than a clarification). See Kirill V. Lyadvinsky's answer for the definitions straight from the standard. See this previous answer about the behavior of The main point of the answer is:
To say they least, it's rather complex and when the different methods kick in are subtle. One thing to certainly be aware of is that MSVC follows the C++98 rules, even in VS 2008 (VC 9 or cl.exe version 15.x). The following snippet shows that MSVC and Digital Mars follow C++98 rules, while GCC 3.4.5 and Comeau follow the C++03 rules:
|
|||||||||||||||||
|
|
C++03 Standard 8.5/5:
|
|||
|
|