gpt4 book ai didi

c - 指向结构中函数的指针

转载 作者:行者123 更新时间:2023-12-02 22:41:50 26 4
gpt4 key购买 nike

我有以下结构:

struct A {
struct list * (* get_items) (void);
char * (*build) (void);
}

现在 build 的分配方式(它是一个指向函数的指针)如下:

struct A someVar = {
.build = someBuildingFunction
};

我不确定如何分配 build 的语法。为什么它以点开头?此外,我如何将 get_items 指向 struct A someVar 中的适当函数?我尝试了几种方法,但总是出错。

我还注意到 somebuildingFunction 末尾缺少分号。这是为什么?

最佳答案

Why is it starting with a dot?

它被称为指定初始化程序。

how would I point get_items to the appropriate function in struct A someVar?

struct A someVar = {
.build = someBuildingFunction,
.get_items = someGettingFunction
};

您可以省略成员的名称并确保以正确的顺序放置函数名称。

I also noticed the lack of semicolon at the end of somebuildingFunction. Why is that?

这对于 C 中的初始值设定项很常见。例如:

int x[] = {
1 /* No semicolon after 1. */
};

关于c - 指向结构中函数的指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10692749/

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