GetMemory(char *p){ p = (char*)malloc(100); }void Test(void){ char *str = NULL; GetMemory(str); strcpy(str, "hello world"); printf(str);}
这段代码有错,str指针始终为空,因为GetMemory改变的是参数的值,而非指针指向的空间里的值,而改变形参的值并不会传回。
修改方法:
//方法一:函数返回 char* GetMemory(){ char* p = (char*)molloc(100); return p; } //方法二:二级指针 void GetMemory(char **P){ *p = (char*)molloc(sizeof(char)*100); }
时间: 2024-10-07 04:17:39