gpt4 book ai didi

c++ - 初始化程序, union 的特定成员

转载 作者:太空宇宙 更新时间:2023-11-03 10:41:29 25 4
gpt4 key购买 nike

我觉得这个问题的答案是否定的,但是是否可以初始化 union 体的特定成员?例如以下内容:

#include <cassert>
#include <Windows.h>

int _tmain(int argc, _TCHAR* argv[])
{
auto time = 20090520145024798ull;

auto large = ULARGE_INTEGER() = {
{ time }
};

assert(large.QuadPart == time);

return 0;
}

(Visual Studio 2013、Windows 10)生成编译器“从‘unsigned __int64’到‘DWORD’的转换”,这意味着它将尝试将 uint64_t 硬塞到 DWORD 中。

ULARGE_INTEGER 是并集:

typedef union _ULARGE_INTEGER {
struct {
DWORD LowPart;
DWORD HighPart;
} u;
ULONGLONG QuadPart;
} ULARGE_INTEGER;

在这种情况下,标准对初始化顺序有何规定?我曾希望编译器会发现 QuadPart 是要分配的适当成员。

最佳答案

使用 union ,您可以使用列表初始化来仅初始化第一个成员,根据 [dcl.init.aggr]:

When a union is initialized with a brace-enclosed initializer, the braces shall only contain an initializer-clause for the first non-static data member of the union. [ Example:

union u { int a; const char* b; };
u a = { 1 };
u b = a;
u c = 1; // error
u d = { 0, "asdf" }; // error
u e = { "asdf" }; // error

—end example ]

因此,在您的示例中,如下所示:

ULARGE_INTEGER large{time};

将初始化 u.LowPart,而不是 QuadPart,无论各个成员的类型是什么。

如果您想做任何其他事情,您必须明确说明:

ULARGE_INTEGER large;
large.QuadPart = time;

或者写一个更好的 union 类型,它实际上有一个构造函数。

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

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