gpt4 book ai didi

c - 字符串连接错误与 malloc 动态内存分配

转载 作者:太空宇宙 更新时间:2023-11-04 05:25:53 25 4
gpt4 key购买 nike

String *char concatenate error with malloc 动态内存分配

我想创建一个连接字符串的函数,它可以工作,但它给出了一个错误并且处理器重新启动,我认为指针有问题,但我不知道它是什么,内存分配问题。

提前致谢!

char *buf;

int main(void) {
// ...

WriteString("#INIT.\r\n"); //serial output

buf = "";

while(1)
{
char *str1 = "qwe";
char *str2 = "asd";
char *str3 = "zxc";
char *str4 = "123";

buf = my_strcat(buf,str1);
buf = my_strcat(buf,str2);
buf = my_strcat(buf,str3);
buf = my_strcat(buf,str4);

WriteString(buf); //serial output

free(buf);
}
}

char *my_strcat(const char *str1, const char *str2) {
char *new_str;
new_str = malloc(strlen(str1)+strlen(str2)+1);
new_str[0] = '\0';
strcat(new_str,str1);
strcat(new_str,str2);
return new_str;
}

串行输出...

#INIT.
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
#INIT.
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
#INIT.
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
#INIT.
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
#INIT.
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
#INIT.
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
#INIT.
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
#INIT.
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123
qweasdzxc123

最佳答案

您对 my_strcat 的第一次调用具有未定义的行为,因为之前未初始化 buf。正是这一行是问题所在

new_str = malloc(strlen(str1)+strlen(str2)+1);

strlen(str1) 其中 str1 未初始化。

建议,使用realloc

char *my_strcat(char *str1, const char *str2)
{
char *new_str;
size_t length;
size_t str1length;

if (str2 == NULL)
return str1;
str1length = 0;
if (str1 != NULL)
str1length = strlen(str1);
length = strlen(str2) + str1length;
new_str = realloc(str1, 1 + length);
if (new_str == NULL)
return str1;
new_str[str1length] = '\0';

strcat(new_str, str2);

return new_str;
}

char *buf;
char *str1 = "qwe";
char *str2 = "asd";
char *str3 = "zxc";
char *str4 = "123";

buf = NULL;
buf = my_strcat(buf, str1);
buf = my_strcat(buf, str2);
buf = my_strcat(buf, str3);
buf = my_strcat(buf, str4);

关于c - 字符串连接错误与 malloc 动态内存分配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27847477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com