可能重复:
指向局部变量的指针
可以在其范围之外访问局部变量的内存吗?
我有一个有趣的问题。我有一个返回指针的读取函数:
char * myReadFunc() {
char r [10];
//some code that reads data into r.
return r;
}
现在,我调用此函数将信息分配给我拥有的一些变量:
char * s;
//Some code to specify where to read from.
s = myReadFunc();
这会产生我想要的结果。
但是,当我这样做时:
char * s1;
char * s2;
//Some code to specify where to read from.
s1 = myReadFunc();
//Some code to change the read location.
s2 = myReadFunc();
我得到了一些奇怪的结果。两者的数据相同,并且始终来自第二个指定的读取位置。
所以我尝试了一些替代代码:
char * s1;
char * s2;
//Some code to specify where to read from.
char r [10];
//some code that reads data into r. IDENTICAL to myReadFunc().
s1 = r;
//Some code to change the read location.
s2 = myReadFunc();
此代码按我的预期产生结果(s1
具有来自一个位置的s2
数据,并具有来自另一个位置的数据)。
所以,我的问题是,为什么后面的代码有效,而上面的代码却没有?我的猜测是,我的函数不知何故被这两个变量取别名,并且由于它指向这两个变量,因此每次调用它时都会重新分配这两个变量。有谁了解这种行为的全部原因?