gpt4 book ai didi

c - 相互引用的结构

转载 作者:太空宇宙 更新时间:2023-11-04 01:23:01 27 4
gpt4 key购买 nike

我有两个需要相互引用的结构,但是无论我先放哪个都会抛出错误,因为我使用的是未识别的类型。

typedef struct _BLOCK
{
int size;
int offset;
struct _BLOCK *nextBlock;
struct _BLOCK *prevBlock;
Pool* parent; //here
} Block;

typedef struct _POOL
{
int size;
void* memory;
Block* Allocated;
Block* Unallocated;
} Pool;

有什么办法可以解决这个问题?

最佳答案

您可以使用前向声明。

typedef struct _POOL Pool;

typedef struct _BLOCK
{
int size;
int offset;
struct _BLOCK *nextBlock;
struct _BLOCK *prevBlock;
Pool* parent;
} Block;

struct _POOL
{
int size;
void* memory;
Block* Allocated;
Block* Unallocated;
};

关于c - 相互引用的结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36918424/

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