What is the difference (memory wise) bewteen:
for(int x=0;x<100;x++)
{
int y = 1+x;
}
and
int y = 0;
for(int x=0;x<100;x++)
{
y = 1+x;
}
I've always wondered if they are the same or the first is a waste of memory?...
|
What is the difference (memory wise) bewteen:
and
I've always wondered if they are the same or the first is a waste of memory?... |
|||||
|
|
Memory-wise, there is no difference. y is on the stack, wherever it's declared within the method. Here the only difference is the scope of y: in the second case, it is restricted to the body of the for loop; in the first, it isn't. This is purely at the language-level: again, y is allocated in exactly the same way, that is, on the stack. Just to make this point perfectly clear, here's a code example:
Here is the assembler generated in debug mode in both cases :
Even without knowing anything about assembly, you can see that both methods have exactly the same instructions. In other words, at the point where a is declared, nothing happens. There is an important difference however if you are using any type that has a constructor, say, an std::vector: at the point where it is declared, the constructor is called, so if you declare it within a loop, it will be reconstructed each time through the loop. For example:
The situation gets worse if you are using new: these two pieces of code behave very differently:
|
|||||||||
|
|
They take up exactly the same amount of memory -- |
|||||||||||||
|
|
A good compiler--or at least one with optimization turned on--would probably do the latter. |
||||
|
|
|
Doesn't really matter with the modern day compilers. Code will (in most cases) be optimized into the 2nd sample. And even if it doesn't, it's a single push to the stack every time y is declared (in the first example) and pop when the 'for' brace is ended so it's not a waste of memory though it can be waste of some CPU cycles. But we have lots of those available nowadays anyway :) |
||||
|
|
|
They are equivalent both in terms of function and memory usage. If there is more code in the function after the loops, the latter may occupy more stack space for the duration of the remainder of that function call (sizeof(int) bytes), depending on what other local variables are defined and the compiler optimization settings. But for all intents and purposes, the two are identical to the point where it is irrelevant which you choose; pick the one that best suits your coding guidelines/standards/taste. |
||||
|
|
|
One important difference as written: if you do
you can not access y outside of the for loop. While when you use
|
||||