作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我写了一个结构
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/
我是一名优秀的程序员,十分优秀!