c语言 字符串 malloc,c – 使用malloc()为const char字符串动态分配内存

第二行是“可怕的”错误:

char* c = (char*)malloc(6*sizeof(char));

// 'c' is set to point to a piece of allocated memory (typically located in the heap)

c = "hello";

// 'c' is set to point to a constant string (typically located in the code-section or in the data-section)

你将变量c分配两次,所以很明显,第一个赋值没有意义.

这就像写作:

int i = 5;

i = 6;

最重要的是,您“丢失”了已分配内存的地址,因此您将无法在以后发布它.

您可以按如下方式更改此功能:

char* m()

{

const char* s = "hello";

char* c = (char*)malloc(strlen(s)+1);

strcpy(c,s);

return c;

}

请记住,无论谁调用char * p = m(),都必须稍后调用free(p)…

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值