结构中的匿名结构中的大括号或相等初始化器不会对 VS2013 生成的输出执行其工作。有代码:
#include <iostream>
#include <cstdint>
struct S
{
struct
{
uint64_t val = 0;
}anon;
};
int main()
{
S s;
S *a = new S;
std::cout << s.anon.val << std::endl;
std::cout << a->anon.val << std::endl;
return 0;
}
在 Linux 上使用以下命令编译:
g++ -std=c++11 def-init-anon-atruct.cpp -o def-init-anon-atruct
(添加优化标志不影响结果)
预期结果:
0
0
奇怪的。用 VS2013 运行它会给出垃圾值。在实现 C++11 标准方面谁是正确的?我高度怀疑这是 GCC 的错。
是否与一些无用的 VS 编译器选项有关?Windows 扩展?由于 MS 的错误,我必须为结构创建默认构造函数?这是荒谬的。