gpt4 book ai didi

C - 结构的内存分配

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

假设我有以下结构定义:-

struct structure
{
int a;
int array[];
}one;

当数组大小未指定时,如何为上述结构分配内存?

最佳答案

假设 32 位 int 和 8 位 charsizeof one 可能是 4。也就是说,array 是一个空(零长度)数组。通常,您会动态分配具有灵活数组成员的结构:

struct structure *two = malloc(sizeof *two + 32 * sizeof(int));

这使得 two 成为一个指向 struct 结构 的指针,在其 array 字段中有 32 个元素。

关于C - 结构的内存分配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19731019/

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