对于我的生活,我无法弄清楚为什么这个程序不起作用。我正在尝试使用指针连接两个字符串并不断收到此错误:
a.out(28095) malloc: *** error
for object 0x101d36e9c: pointer being realloc'd was not allocated
*** set a breakpoint in malloc_error_break to debug
我的 str_append.c:
#include <stdio.h>
#include <stdlib.h>
#include "stringlibrary.h" /* Include the header (not strictly necessary here) */
//appends s to d
void str_append(char *d, char *s){
int i=0, j=0;
d = realloc(d, strlength(d)+strlength(s)+1);
//find the end of d
while(*(d+i)!='\0'){
i++;
}
//append s to d
while(*(s+j)!='\0'){
*(d+i)=*(s+j);
i++;
j++;
}
*(d+i)='\0';
}
我有自己的 strlength 函数,我 100% 确定它有效。
我的 main.c:
#include <stdio.h>
#include <stdlib.h>
#include "stringlibrary.h"
int main(int argc, char **argv)
{
char* str = (char*)malloc(1000*sizeof(char));
str = "Hello";
char* str2 = (char*)malloc(1000*sizeof(char));
str2 = " World";
str_append(str, str2);
printf("Original String: %d\n", strlength(str));
printf("Appended String: %d\n", strlength(str));
return 0;
}
我尝试重新分配给临时变量并收到相同的错误。任何帮助表示赞赏。
编辑:感谢所有的答案。这个网站很棒。我不仅知道我哪里出错了(我猜是简单的错误),而且我发现了一个我不知道的关于弦乐的大漏洞。因为我不能使用 strcpy 函数,所以我自己实现了。它基本上是 strcpy 的源代码。
char *string_copy(char *dest, const char *src)
{
char *result = dest;
while (*dest++ = *src++);
return result;
}