#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;
}
運行結果如下: