vote up 3 vote down star
1

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...
	 };
 }
flag

4 Answers

vote up 5 vote down check

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.

struct A { ~A(){ printf( "A destructed\n" ); } };

int main() {
    {
      const A anarray  [5] = {A()} ;
    }
    printf( "inner scope closed\n");
}
link|flag
Out of curiosity -- does anyone know if this behavior is defined? That is, if the storage of constants is spelled out in the standard? Thanks. – Kim Gräsman Aug 26 at 11:46
2  
More or less. The standard doesn't talk about a "stack" at all. But it does say that variables default to automatic storage duration, that is, they are destroyed when they go out of scope. And the way this is implemented is with a stack. So no, you are not guaranteed that it it allocated on the (or a) stack, but you are guaranteed that it behaves as if it does – jalf Aug 26 at 11:51
3  
const-ness doesn't affect that. static would have given it static storage duration. Const just specifies that it may not be modified, it doesn't affect lifetime. – jalf Aug 26 at 12:03
Mkes sense, thanks! – Kim Gräsman Aug 26 at 13:44
1  
This is a bad example. Regardless of the storage location of <code>anarray</code>, all elements will have to be destroyed by the time the program exits. You should add scope blocks and a print to be sure: <code> struct A { ~A(){ printf( "A destructed\n" ); } }; int main() { { const A anarray[5]; } printf( "main exiting\n" ); }; </code> – arolson101 Sep 8 at 14:50
show 3 more comments
vote up 4 vote down

As I understand it: yes. I've been told that you need to qualify constants with static to put them in the data segment, e.g.

void someFunction()
{
     static const unsigned int actions[8] = 
         {
             e1,
             e2,
             etc...
         };
}
link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

Yes, non-static variables are always created on the stack.

link|flag
Are you not implying that it being static would take up stack space? – Dynite Aug 26 at 12:12
@Dynite, a colleage of mine mentioned that once before. However, I am not certain, so I'll just remove that part of my post. – StackedCrooked Aug 26 at 14:16
@Dynite, I was talking BS. Correct information can be found here: stackoverflow.com/questions/93039/… – StackedCrooked Aug 26 at 20:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.