动态内存经典笔试题分析

题目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函数会有什么样的后果?

  1. GetMoemory函数采用值传递的方式,无法将malloc开辟空间的地址返回放在str中,调用后str依然是NULL指针。
  2. strcpy中使用了str,就是对NULL解引用操作,程序会崩溃。
  3. 内存泄漏。

应该让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之后不能自动置为空,一定要手动置为空哦!!!!

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值