一、运行如下程序段
#include <iostream>
#include <string>
#include <cstring> //strcpy
#include <cstdlib> //malloc
#include <cstdio> //printf using namespace std; void GetMemory(char* p){
p = (char*)malloc();
} int main(){
char *str = NULL;
GetMemory(str);
strcpy(str,"Thunder");
strcat(str+,"Downloader");
printf(str); return ;
}
分析:程序崩溃。在函数中给指针分配空间,实际上是给指针的临时变量分配空间,函数结束后临时变量消亡,str仍然为NULL。改变指针需要传入二级指针。函数名需改为
void GetMemory(char* &p)