What is the difference between
void *bytes = alloca(size);
and
char bytes[size]; //Or to be more precise, char x[size]; void *bytes = x;
...where size is a variable whose value is unknown at compile-time.
|
What is the difference between
and
...where size is a variable whose value is unknown at compile-time.
| ||||
|
feedback
|
|
Put another way:
| |||||||||||||
feedback
|
|
From the GNU documentation:
Additionally, | |||
feedback
|
|
Besides the point Billy mentioned, | |||
|
feedback
|
|
The biggest difference is that alloca does not call constructors or destructors when you are using the memory as class variables. The other differences are less likely to be noticed, but can become apparent in some weird run time errors in some situations. | |||
|
feedback
|
|
In the second form, | |||||||||
feedback
|
|
Besides the already-discussed points of when exactly the space is freed, and whether the construct is supported at all, there is also this:
The most noticeable difference is in what (Also, in your example, the element types are different; to be the same, the first should be changed to | |||
|
feedback
|
sizea compile-time constant. Is it? – AndreyT Apr 10 '10 at 19:10--std=gnu99which supports both.alloca()is a GNU extension, and the variable length array is a standards-compliant C99 feature. – Matt B. Apr 12 '10 at 17:19objective-c. I know that Mac development is not the only use of Obj-C, but that's the most likely application of the language. My point was thatsizeneed not be constant with C99/gnu99, and that it is a default mode in Xcode. A minor (slightly unrelated) correction to my previous comment would be s/Apple/Xcode/. – Matt B. Apr 20 '10 at 14:29