#include <stdio.h>
#include <stdlib.h>
void getmemory(char *p) //函数的参数是局部变量,在这里给它分配内存还在,但是P释放了。
{
p=(char *) malloc(100);
}
int main( )
{
char *str=NULL;
getmemory(str);
strcpy(str,"hello world");
printf("%s/n",str);
free(str);
return 0;
}
答: 程序崩溃,getmemory中的malloc 不能返回动态内存, free()对str操作很危险
修改后的程序如下:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//引用
/*void getmemory(char *&p)
{
p=(char *) malloc(100);
}
int main( )
{
char *str=NULL;
getmemory(str);
strcpy(str,"hello world");
printf("%s\n",str);
free(str);
return 0;
}
*/
//传地址的地址
/*
void getmemory(char **p)
{
*p=(char *) malloc(100);
}
int main( )
{
char *str=NULL;
getmemory(&str);
strcpy(str,"hello world");
printf("%s\n",str);
free(str);
return 0;
}
*/
char * getmemory()
{
//char*p=(char *) malloc(100);
static char p[100];
return p;
}
int main( )
{
char *str=NULL;
str=getmemory();
strcpy(str,"hello world");
printf("%s\n",str);
//free(str);
return 0;
}
运行结果如下: