可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
I have heard about the following scenario right when I started programming in C.
"Trying to access from outside, a functions local variable will result in error (or garbage value). Since the stack gets cleared off when we return from the function"
But my below code sample prints a value of 50. I am compiling the code with latest GCC compiler.
#include <stdio.h>
int * left();
int main()
{
int *p=left();
printf("%d\n",*p);
return 0;
}
int * left()
{
int i=50;
return &i;
}
Enlight me on this issue.
Can I know the behaviour in C++ ?? Is it similar to c ..
回答1:
Modify it to add a second call to printf
and you'll see a different value from the first time. Compile it with optimizations turned on and you'll see another set of values. Do anything with the value and you're stepping into undefined territory, which means that the compiler is free to summon demons through your nasal passages.
On my system, I see 50
and then 0
; with optimizations I see 0
and then 32767
.
If you make the local variable static
, then you can return its address since it becomes just like a global (but remember that there is only one instance of it).
When a function returns, the local storage it was using on the stack is now considered "unused" by the program, since the stack doesn't go that high anymore. Typically, though, the values are still there, since there's no urgent need to clear them. The memory is also still owned by the program, since there's no sense in returning memory to the operating system a few bytes at a time. So for your specific example, under the circumstances in which you compiled it, the memory pointed to still contains the value 50
. Officially, though, the value of *p
is indeterminate, and attempts to use it result in undefined behavior.
One existential crisis of the C language is how on the one hand, it says nothing about the stack and the various bits of hexadecimal sludge that make up a running process; on the other hand, it's necessary to understand those in order to protect yourself from crashes, buffer overflows, and undefined behavior. Just remember that you're lucky that GCC gives a warning for this.
回答2:
The variable 'i' is created on the stack and when the function 'left' returns, the stack is cleared. When I say cleared, it means the address used by variable 'i' is marked free for reuse. Till some other portion of code uses the same address, the value will remain unmodified. In your case, it is plain luck that gives you desired results. If you call few more functions after call to 'left', I am fairly certain you will get wrong results.
回答3:
The behavior according to the C standard is undefined not garbage values. So it's possible, and occasionally likely, that the value will remain unchanged. This is not guaranteed by any means.
This is working by luck / chance / accident and nothing else. Don't rely on this behavior because it will come back to bite you.
回答4:
Look at this modified example, where it shows clearly if something goes in between:
int *p=left();
// right here
printf("%d\n",*p);
You get a corrupted stack easily. The idea is that you don't own that place, someone else could use it!
int main()
{
int *p=left();
right(); // Look here!
printf("%d\n",*p); // prints -50 instead of 50
return 0;
}
...
int * right()
{
int i=-50;
return &i;
}
回答5:
You are referring to an object beyond its lifetime (the scope of left()
). That results in undefined behaviour - I'd guess that you still get 50 because nothing has overwritten the area where i
was yet.
回答6:
It works by accident.
Memory location pointed by p
still contains integer value 50 when printf()
is called.
But call to any function inside main()
between left()
and printf()
would overwrite it.
For example, I don't know what would happen in your implementation if you changed your printf()
call to:
printf("abs(%d) = %d ???\n", *p, abs(*p));
Don't do it!
回答7:
As far as the C standard is concerned, the value is undefined.
Practically, as long as nothing is pushed to the stack before the returned value is referenced, it works, but the next time a function is called the return address and new stack frame are pushed to the stack and may overwrite the referenced value.
This would not be considered acceptable coding (because of the undefined nature).
回答8:
Undefined behavior. i
is destroyed upon leaving left()
. You have an address to garbage in p
. The compiler hasn't destroyed i
by luck, yet.