代码如下:
#include "stdafx.h"
#include <stdio.h>
int * getValue()
{
int abb = 111;
return &abb;
}
int main(int argc, char* argv[])
{
int xx= (*getValue());
int a =2,b=3,c=4,d=5,e=4,f=5,g=5;
printf("[%d]\n",xx);
return 0;
}
执行结果:
[111]
//你的那个放在一起了...由在那个表达式中,要区分的话很难.
//用C++可以很好给你区分出来
#include <stdio.h>
int * getValue()
{
int abb = 111;
return &abb;
}
void fuck()
{
int xx = 123;
}
int main(int argc, char* argv[])
{
int xx= 0;
int* p = getValue();
fuck();
xx = *p;
int a =2,b=3,c=4,d=5,e=4,f=5,g=5;
printf("[%d]\n",xx);
return 0;
}
执行结构:
[123]
简言之,就是虽然那个局部变量占用的内存标记为释放了ÿ