if this was declared within a function, would it be declared on the stack? (it being const is what makes me wonder)
void someFunction()
{
const unsigned int actions[8] =
{ e1,
e2,
etc...
};
}
|
1
|
|
|
|
|
|
Yes, they're on the stack. You can see this by looking at this code snippet: it will have to print the destruction message 5 times.
|
||||||||||||||||
|
|
|
As I understand it: yes. I've been told that you need to qualify constants with
|
||
|
|
|
|
If you don't want your array to be created on stack, declare it as static. Being const may allow the compiler to optimize whole array away. But if it will be created, it will be on stack AFAIK. |
||
|
|
|
|
Yes, non-static variables are always created on the stack. |
||||||
|