Sorry for the simple question but I'm on vacation reading a book on core audio, and don't have my C or Objective C books with me...
What are the curly braces doing in this variable definition?
MyRecorder recorder = {0};
|
Sorry for the simple question but I'm on vacation reading a book on core audio, and don't have my C or Objective C books with me... What are the curly braces doing in this variable definition?
|
||||
|
Assuming that Actually this also works on all other datatypes like UPDATE: A quote extracted from the website linked above, citing the final draft of C99:
|
||||
|
Its initializing all members of See this example code,
This is the output.
|
|||||||
|
|
|
|||||||||
|
|
|
|||
|
|
|
Actually, it don't initliaze all the elements of the structure, just the first one. But, the others are automatically initialized with 0 because this is what the C standard ask to do. If you put: MyRecorder recorder = {3}; The first element will be 3 and the others weill be 0. |
|||
|
|
|
Struct and union variables can be initialized that way. |
|||||
|
{0}, the universal zero initializer. It "works", recursively if needed, for every type! ints, doubles, structs, arrays, pointers, pointers to structs, structs with arrays of pointers, ..., ... – pmg Jan 5 '12 at 15:26{0}is different to{42}and how they apply to arrays or nested structs or other "strange" types would require a very long answer. – pmg Jan 5 '12 at 15:38