gpt4 book ai didi

c++ - 这是 GCC 错误吗?使用 union 初始化结构

转载 作者:可可西里 更新时间:2023-11-01 16:19:16 25 4
gpt4 key购买 nike

我可能发现了 GCC v4.8.2 的错误,但我想在提交之前先检查一下,因为这可能是我做错了什么!

以下代码:

#include <vector>
struct Message
{
typedef union {
char byte;
const char *str;
} Parameter;

Parameter p1;
Parameter p2;
};

int main()
{
std::vector<Message> messages_;

messages_.push_back({{ .byte = 'a' }});

Message message = {{ .byte = 'a' }, { .str = "Hello World" }};
messages_.push_back(message);

messages_.push_back({{ .byte = 'a' }, { .str = "Hello World" }});
}

clang++ -std=c++11 main.cpp 编译得很好。然而 g++ 输出这个:

main.cpp: In function ‘int main()’:
main.cpp:23:66: internal compiler error: in reshape_init_class, at cp/decl.c:5216
messages_.push_back({{ .byte = 'a' }, { .str = "Hello World" }});
^
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://bugzilla.redhat.com/bugzilla> for instructions.
Preprocessed source stored into /tmp/ccrf5vwr.out file, please attach this to your bugreport.

如果没有人有任何想法,我会将其作为错误提交,尽管根据我的经验,程序员的问题几乎从来都不是编译器错误,而且几乎总是他自己的错误!

最佳答案

正如上面评论中的回答:您从 GCC 收到的任何包含短语 internal compiler error 的错误消息和 Please submit a full bug report肯定是编译器的bug,不是你自己的错!在这种情况下,该错误似乎与 GCC 对 {{ ... }} 的解析有关。在 C++ 模式下,“...”包含一个指定的初始值设定项。 @Sam 将其报告为 GCC bug 59832 .

但是,正如@Angew 指出的那样,这一行 —

messages_.push_back({{ .byte = 'a' }});

不是有效的 C++。标准 C++ 不允许指定的初始化程序;这是一个 C99 特性,没有被 C++(C++11 和 C++14)采用。

至于为什么将指定的初始化程序添加到 C++ 中会出现问题,请参阅 here ,Doug Gregor 询问编译器应该如何解释类​​似的东西

struct Foo {int x,y; };
void f(Foo);
void f(std::initializer_list<int>);

int main(){
f({1});
f({1,2});
f({1,2,3});
f({.x=1});
f({.x=1,2});
f({.x=1,2,3});
}

根据记录,GCC 4.8 将所有六个都视为对 f(initializer_list<int>) 的调用. Clang 3.5 将前三个视为对 f(initializer_list<int>) 的调用, 接下来的两个是对 f(Foo) 的调用, 最后一个是病态的。基本上,这是一个非标准的构造:不同的编译器有权以不同的方式对待它,他们确实这样做了

关于c++ - 这是 GCC 错误吗?使用 union 初始化结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21579206/

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