I was very surprised when I saw this notation. What does it do and what kind of C notion is it?
|
|
This is a compound literal as defined in section 6.5.2.5 of the C99 standard. It's not part of the C++ language, so it's not surprising that C++ compilers don't compile it. (or Java or Ada compilers for that matter) The value of the compound literal is that of an unnamed object initialized by the initializer list. If the compound literal occurs outside the body of a function, the object has static storage duration; otherwise, it has automatic storage duration associated with the enclosing block. So no, it won't destroy the stack. The compiler allocates storage for the object. Parenthesis are put around the type and it is then followed by an initializer list - it's not a cast, as a bare initialiser list has no meaning in C99 syntax; instead, it is a postfix operator applied to a type which yields an object of the given type. You are not creating As to why it's used, I can't see a good reason for it in your single line, although it might be that a could be reassigned to point at some other array, and so it's a shorter way of doing the first two lines of:
I've found it useful for passing temporary unions to functions
|
|||||
|
|
This is a c99 construct, called a compound literal. From the May 2005 committee draft section 6.5.2.5:
|
|||
|
|
|
|||
|
|
|
(int[2]) tells the compiler that the following expression should be casted to int[2]. This is required since {0, 2} can be casted to different types, like long[2]. Cast occurs at compile time - not runtime. The entire expression creates an array in memory and sets a to point to this array. |
||||
|
|
|
||||