gpt4 book ai didi

c - 如何在 C 中的结构中初始化 const 变量?

转载 作者:太空狗 更新时间:2023-10-29 16:40:17 25 4
gpt4 key购买 nike

我写了一个结构

struct Tree{
struct Node *root;
struct Node NIL_t;
struct Node * const NIL; //sentinel
}

我要

struct Node * const NIL = &NIL_t;

我无法在结构中初始化它。我正在使用 msvs。

我使用 C,而不是 C++。我知道我可以在 C++ 中使用初始化列表。

如何在 C 中做到这一点?

最佳答案

如果您使用的是 C99,则可以使用指定的初始化程序来执行此操作:

struct Tree t = { .root = NULL, .NIL = &t.NIL_t };

不过这只适用于 C99。我已经在 gcc 上对此进行了测试,它似乎工作得很好。

关于c - 如何在 C 中的结构中初始化 const 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4676047/

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