gpt4 book ai didi

c++ - union 初始化

转载 作者:可可西里 更新时间:2023-11-01 18:02:27 30 4
gpt4 key购买 nike

我正在尝试全局初始化一个 union ,如下例所示:

#include <cstdio>

typedef union {
char t[4];
int i;
} a;

enum {
w = 5000,
x,
y,
z
};

a temp = {w};
int main() {
printf("%d %d %d %d %d\n", temp.t[0],temp.t[1],temp.t[2],temp.t[3],temp.i);
return 0;
}

但是,如果您运行代码,您会注意到 temp.i 或 temp.t[...] 实际上都没有给出我初始化 union 时使用的正确项。我想如果我可以手动初始化整数成员就可以避免这种情况,但不幸的是我不能。我也无法更改结构中元素的顺序(交换 int 和 char 顺序可以正确初始化所有内容)——它们实际上是由外部库提供的。我的问题是:如何全局设置结构的整数成员,而不是 char[4] 成员(或者,在这种情况下,只是 char[] 的第一个元素)?

编辑:另外,这个问题是否有严格的 C++ 解决方案?即命名结构初始化不起作用(因为它在语言中不存在)?

最佳答案

在 C99 中你可以这样做:

a temp = { .i=w };

关于c++ - union 初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6161008/

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