gpt4 book ai didi

c - 如何动态地将字符串插入到 C 结构内部的二维数组中?

转载 作者:行者123 更新时间:2023-11-30 16:09:51 25 4
gpt4 key购买 nike

我当前正在尝试将字符串参数插入到结构内部的二维数组中。我遇到的问题是我不确定如何使用 realloc 来动态增加结构内这个二维数组的大小。目前它被设置为使用 Malloc,因此我可以测试它的单个参数,这仍然给我带来段错误。

这是我正在使用的结构:

typedef struct SimpleCommand {
// Available space for arguments currently preallocated
int _numberOfAvailableArguments;
// Number of arguments
int _numberOfArguments;
// Array of arguments
char **_arguments;
}SimpleCommand;
//The struct is declared in Main as follows:
struct SimpleCommand _currentSimpleCommand = {._numberOfAvailableArguments = 0, ._numberOfArguments = 0, ._arguments = NULL};

然后将该结构传递给一个函数,该函数的工作是将参数 strcpy 到简单命令结构内的二维数组中。

//insert argument into simple command
void insertArgument(struct SimpleCommand command, char * argument ){
//malloc some space for the argument
command._arguments = malloc(strlen((argument)));
//copy argument into array
strcpy(command._arguments[command._numberOfArguments], argument);
command._numberOfArguments++; //added an argument
}

非常感谢任何帮助!

最佳答案

我不确定我是否理解你的问题,但这是我的推论:

malloc allocates memory.
realoc realocates memory preserving, when possible, the data previously stored.

伪(未编译)

int count = 10;
Thing * things = malloc(count * sizeof(Thing));
things[0] = athing;
// things[0] ... [9] is ok

// need more memory
count += 10;
Thing * things = realloc(things, count * sizeof(Thing));
// things[0] ... [19] is ok
// things[0] still hold athing

正如您所指出的,您正在使用二维数组。下面的行看起来很可疑:

command._arguments = malloc(strlen((argument)));

您正在为 char* 分配大小并将其存储在 char** 中!!

在您的问题中,您需要为参数数组分配空间,并为复制参数分配空间(如果我理解您要做什么)。人们将需要 malloc,因为它的大小不会改变。随着添加更多参数,另一个将需要重新分配。

我希望这可以帮助您完成作业,而无需提供完整的解决方案。

关于c - 如何动态地将字符串插入到 C 结构内部的二维数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59007691/

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