is this form of intializing an array to all 0s
char myarray[ARRAY_SIZE] = {0} supported by all compilers? ,
if so, is there similar syntax to other types? for example
bool myBoolArray[ARRAY_SIZE] = {false}
|
Yes, this form of initialization is supported by all C++ compilers. It is a part of C++ language. In fact, it is an idiom that came to C++ from C language. In C language Since this initalizer is universal, for
is guaranteed to initialize the entire array with
in guaranteed to initialize the whole array with null-pointers of type If you believe it improves readability, you can certainly use
but the point is that However, in C++
i.e. just an empty pair of |
|||||||||||||
|
|
Note that the '=' is optional in C++11 universal initialization syntax, and it is generally considered better style to write :
|
|||
|
|
|
yes i think it should work, i did not try but i believe it works |
|||||
|
|
Yes, I believe it should work and it can also be applied to other data types. For class arrays though, if there are fewer items in the initializer list than elements in the array, the default constructor is used for the remaining elements. If no default constructor is defined for the class, the initializer list must be complete — that is, there must be one initializer for each element in the array. |
||||
|
|
falseis the same as0(otherwiseif(false)wouldn't evaluate to false), so what you have will probably work on 99% of compilers. Can't be sure about the other 1% until we cite the standard. – Chris Lutz Dec 17 '09 at 9:24int a[10] = { 1, 2, 3 };will seta[3]..a[9]to0, ("initialized implicitly the same as objects that have static storage duration"). Does this hold true for C++? – Alok Dec 17 '09 at 9:36falseis not the same as0, but in{0}the 0 is converted tofalse, and in (for C++){}you don't even have to care about conversions: It's initialized tofalseor0or null-pointer or any other type-sensitive default. – Johannes Schaub - litb Dec 17 '09 at 13:04