在 C 中创建结构体数组?

发布于 2024-12-15 09:55:23 字数 662 浏览 0 评论 0原文

可能的重复:
在 C 中定义结构体数组?

我有一个结构体 DATA ,它有两个字段(int - id 和 char - dat)。

我为其分配内存:

DATA *current = malloc(sizeof(DATA));

并分配所有字段:

current->id = 1;
current->dat = a;

我不知道该怎么做...是如何将我刚刚初始化的 DATA 添加到 DATA 数组中(声明为 DATA lstData[100])


另外,通过询问之前的问题,我觉得在这种情况下我可能不需要 malloc,因为我有一个包含 100 个 DATA 元素的静态数组?在这种情况下,以下代码将失败:

lstProc[10]->id = 1; //Error: Program received signal: "EXC_BAD_ACCESS"

Possible Duplicate:
Defining an array of structures in C?

I have a structure DATA which has two fields (int - id and char - dat).

I allocate memory to it:

DATA *current = malloc(sizeof(DATA));

And assign all the fields:

current->id = 1;
current->dat = a;

What I am not sure how to do...is how to add the DATA I just initialized into an array of DATA (which is declared as DATA lstData[100])


Also, from asking previous questions, I feel like maybe I don't need to malloc in this case since I have a static array of 100 DATA elements? In that case, the following code fails:

lstProc[10]->id = 1; //Error: Program received signal: "EXC_BAD_ACCESS"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温柔女人霸气范 2024-12-22 09:55:23

你是对的。无需进行 malloc。由于您有一个结构数组(不是指向结构的指针),因此请使用:

lstProc[10].id = 1;

You are right. No need to malloc. Since you have an array of structures (not pointers to structures), use:

lstProc[10].id = 1;
蓝眼泪 2024-12-22 09:55:23

如果您有 DATA 结构的静态数组,而不是指向 DATA 的指针,则需要使用点来访问特定的 DATA 成员:

lstProc[10].id = 1;

并回答您原来的问题:

memcpy(&(lstProc[10]), current, sizeof(DATA));

If you have static array of DATA structures, NOT of pointers to DATA, you need to use dot to access particular DATA members:

lstProc[10].id = 1;

And answer to your original question:

memcpy(&(lstProc[10]), current, sizeof(DATA));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文