gpt4 book ai didi

c - 不透明结构指针

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

在我的库中,我有一个实例结构,其中包含库所需的一切,这样您就可以定义库的多个实例。该库要求用户定义自己的扩展或自定义变量。

这是我尝试过的:

库.h

typedef struct custom_s *custom;

typedef struct {
int a;
int b;
custom customs;
} instance;

然后用户可以做:

主要.c

// User sets their own custom structure
struct custom_s {
int c;
};

int main(void) {
instance test;
test.customs.c = 1;
}

但是我得到了“Segmentation fault”的错误。

最佳答案

不应该是:

test.customs->c = 1

既然你输入了它

typedef struct custom_s *custom;

并用作

custom 在实例结构中。

永远不会分配...

关于c - 不透明结构指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18517832/

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