char* GetMemory(void) { char p[] = "hello world"; return p; } int main() { char* str = NULL; str = GetMemory(); printf(str); return 0; }
GetMemory函数首先将"hello world"字符串(一般在.rdata区段存放)复制到栈上,然后返回对应的栈地址。当GetMemory返回后栈内存依旧可以正确访问,但是当调用printf函数时其会使用GetMemory使用过的栈,所以对应栈中的内存就会被覆盖,printf无法打印出hello world。
const char* GetMemory(void) { const char* p = "hello world"; return p; } int main() { const char* str = NULL; str = GetMemory(); printf(str); return 0; }
GetMemory返回的是.rdata区段中的常量字符串"hello world"的地址,所以printf可以正确打印