题目1:
void GetMemory(char *p)
{
*p = (char *)malloc(100);
}
void Test(void)
{
char *str = NULL;
GetMemory(str);
strcpy(str, "hello world"); 对NULL指针解引用操作符程序崩溃。
printf(str);
}
请问运行Test函数会有什么样的后果?
- GetMoemory函数采用值传递的方式,无法将malloc开辟空间的地址返回放在str中,调用后str依然是NULL指针。
- strcpy中使用了str,就是对NULL解引用操作,程序会崩溃。
- 内存泄漏。
应该让GetMoemory函数采用地址传递的方式,使用二级指针。并且应该在使用结束后,将malloc出来的空间释放掉。
题目2:
char *GetMemory(void)
{
char p[] = "hello world";
return p; 出了函数p为野指针
}
void Test(void)
{
char *str = NULL;
str = GetMemory();
printf(str);
}int main(){
test();
return 0;
}
请问运⾏Test函数会有什么样的结果?
返回栈空间地址问题
char *GetMemory(void)
{
static char p[] = "hello world";
return p; 出了函数p为野指针
}
void Test(void)
{
char *str = NULL;
str = GetMemory();
printf(str);
}int main(){
test();
return 0;
}
题目3:
void GetMemory(char **p, int num)
{
*p = (char *)malloc(num);
}
void Test(void)
{
char *str = NULL;
GetMemory(&str, 100);
strcpy(str, "hello");
printf(str);
}int main(){
Test();
return 0;
}
请问运⾏Test函数会有什么样的结果?
存在内存泄漏问题。
void GetMemory(char **p, int num)
{
*p = (char *)malloc(num);
}
void Test(void)
{
char *str = NULL;
GetMemory(&str, 100);
strcpy(str, "hello");
printf(str);free(str);
str=NULL;
}int main(){
Test();
return 0;
}
题目4:
void Test(void)
{
char *str = (char *) malloc(100);
strcpy(str, "hello");
free(str);//str就是野指针
if(str != NULL)
{
strcpy(str, "world");//非法访问
printf(str);
}
}int main(){
Test();
return 0;
}
请问运⾏Test函数会有什么样的结果?
str没有手动置为空造成了非法访问。
void Test(void)
{
char *str = (char *) malloc(100);
strcpy(str, "hello");
free(str);str==NULL;
if(str != NULL)
{
strcpy(str, "world");
printf(str);
}
}int main(){
Test();
return 0;
}
在free之后不能自动置为空,一定要手动置为空哦!!!!