gpt4 book ai didi

c - 使用 {} 在 C 中初始化结构

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

在标记的行中我得到一个错误 Error - expected expression

#include <stdlib.h>

struct list_head {
struct list_head *next, *prev;
};

struct program_struct {
const char *name;
struct list_head node;
};
typedef struct program_struct program_t;

struct task_t {
program_t blocked_list;
};

int main() {

struct task_t *p = malloc(sizeof(*p));
p->blocked_list.name = NULL;
p->blocked_list.node = {&(p->blocked_list.node), &(p->blocked_list.node)}; //error

return 0;
}

我知道我可以用

替换这一行
p->blocked_list.node.next = &(p->blocked_list.node);
p->blocked_list.node.prev = &(p->blocked_list.node);

但是我可以像在第一段代码中尝试的那样使用 {} 让它工作吗?

最佳答案

只有在定义变量时才允许初始化。所以,你不能在赋值中使用初始值设定项。您可以改为使用 C99 的 compound literals :

p->blocked_list.node = (struct list_head) {&(p->blocked_list.node), &(p->blocked_list.node)}; //error

关于c - 使用 {} 在 C 中初始化结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40038290/

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