经典笔试题--动态内存管理

目录

1.请问运行Test函数会有怎样的结果?

2.请问运行Test 函数会有什么样的结果? (返回栈空间地址的问题)

3.请问运行Test 函数会有什么样的结果? 

4.请问运行Test 函数会有什么样的结果 ?


 

1.请问运行Test函数会有怎样的结果?

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void GetMemory(char* p)
{
	p = (char*)malloc(100);
}

void Test(void)
{
	char* str = NULL;
	GetMemory(str);
	strcpy(str, "hello world");
	printf(str);
}
int main()
{
	Test();
	return 0;
}

解析:

GetMemoy函数中的p是形式参数,该函数调用完之后自动销毁,改变它不会改变主函数中的str,str仍为NULL。而strcpy将hello world拷贝至str所指向的空间时,会发生对空指针的解引用操作,最终程序崩溃。

  •  程序更改

(一) 

void GetMemory(char** p//二级指针接收一级指针的地址
{
	*p = (char*)malloc(100);
}

void Test(void)
{
	char* str = NULL;
	GetMemory(&str);//传址调用
	strcpy(str, "hello world");
	printf(str);
	free(str);
	str = NULL;
}
int main()
{
	Test();
	return 0;
}

 (二)

char* GetMemory()
{
	char* p = (char*)malloc(100);
	return p;
}

void Test(void)
{
	char* str = NULL;
	str=GetMemory();
	strcpy(str, "hello world");
	printf(str);
	free(str);
	str = NULL;
}
int main()
{
	Test();
	return 0;
}

2.请问运行Test 函数会有什么样的结果? (返回栈空间地址的问题)

char* GetMemory(void)
{
	char p[] = "hello world";
	return p;
}
void Test(void)
{
	char* str = NULL;
	str = GetMemory();
	printf(str);
}
int main()
{
    Test();
    return 0;
}

 解析:

 str成为野指针

3.请问运行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);
}
int main()
{
    Test();
    return 0;
}

解析:

打印正常,但是缺少free函数,存在内存泄漏问题。

4.请问运行Test 函数会有什么样的结果 ?

void Test(void)
{
	char* str = (char*)malloc(100);
	strcpy(str, "hello");
	free(str);
	if (str != NULL)
	{
		strcpy(str, "world");
		printf(str);
	}
}
int main()
{
    Test();
    return 0;
}

解析:

free(str)后,str所开辟的空间被释放掉,但是str中扔保留那块空间的起始地址,后面if语句中的strcpy函数中的str已经成为野指针,对野指针进行操作,非法访问内存。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值