有关指针的传值调用和传址调用

今天在学习动态内存管理的时候,遇到下面的代码,发现可以对标题问题有更深刻的理解

下面给出代码(有问题的代码,这是一道面试题)

#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;
}

先给出结论,想要通过函数修改某个变量的值,都是传入该变量的地址(实参),然后函数参数(形参)是比变量更高一级的指针。

在此之前,我所遇到的都是传入的变量都是类似 int, char等(实参),然后函数参数即取出它们的地址(形参,一级指针)。

上述代码中,想要通过GetMemory函数修改str(一级指针),所以应该传入   &str

同时,GetMemory函数参数应该是二级指针。下面给出修改后的代码

#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);//printf("hello world");

	//释放
	free(str);
	str = NULL;
}

int main()
{
	Test();

	return 0;
}

    printf(str); 对于这一行,我也是第一次见,printf() 里面放了个一级指针

//printf("hello world"); 本质上是传入"hello word" 的首字符地址

C 库函数 int printf(const char *format, ...) 发送格式化输出到标准输出 stdout。

https://www.bilibili.com/video/BV1Vm4y1r7jY?p=151&spm_id_from=pageDriver&vd_source=6064b801a86d7d730b20113e9788fe71&t=1800

char* GetMemory(void)
{
	char p[] = "hello world";
	return p;
}

void test(void)
{
	char* str = NULL;
	str = GetMemory();
	printf(str);
}

int main()
{
	test();
	return 0;
}

GetMemory函数调用结束后,p[]数组就被释放掉了,返回的p指针就变成了野指针(因为此时p指向的很可能已经被覆盖掉了)

只需修改char p[]  为 char* p,因为字符串"hello world"是字符串常量,是不可修改的。

char* GetMemory(void)
{
	char* p = "hello world";//将数组改为指针
	return p;
}

void test(void)
{
	char* str = NULL;
	str = GetMemory();
	printf(str);
}

int main()
{
	test();
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值