我想用一个子函数来复制一个char数组。就像这样:
void NSV_String_Copy (char *Source, char *Destination)
{
int len = strlen(Source);
if (*Destination != NULL)
free(Destination);
Destination = malloc(len + 1);
memmove(*Destination, Source, len);
Destination[len] = '\0'; //null terminate
}
这样,我可以从主函数调用它,并按以下方式执行操作:
char *MySource = "abcd";
char *MyDestination;
NSV_String_Copy (MySource, MyDestination);
但是,它并没有按预期工作。请帮忙!
最佳答案
C按值传递参数,这意味着您不能使用问题中的函数原型更改调用方的MyDestination
。这里有两种方法可以更新呼叫者的MyDestination
副本。
选项a)传递MyDestination
的地址
void NSV_String_Copy (char *Source, char **Destination)
{
int len = strlen(Source);
if (*Destination != NULL)
free(*Destination);
*Destination = malloc(len + 1);
memmove(*Destination, Source, len);
(*Destination)[len] = '\0'; //null terminate
}
int main( void )
{
char *MySource = "abcd";
char *MyDestination = NULL;
NSV_String_Copy(MySource, &MyDestination);
printf("%s\n", MyDestination);
}
选项b)从函数返回
Destination
,并将其分配给MyDestination
char *NSV_String_Copy (char *Source, char *Destination)
{
if (Destination != NULL)
free(Destination);
int len = strlen(Source);
Destination = malloc(len + 1);
memmove(Destination, Source, len);
Destination[len] = '\0'; //null terminate
return Destination;
}
int main( void )
{
char *MySource = "abcd";
char *MyDestination = NULL;
MyDestination = NSV_String_Copy(MySource, MyDestination);
printf("%s\n", MyDestination);
}
关于c - 子功能内的malloc,free和memmove,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28618434/