前端之家收集整理的这篇文章主要介绍了
c – 使用花括号将临时值初始化为静态数据成员的初始值引起错误,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个非常简单的
代码代码在
GCC 6.0中出现
错误:
template<class T>
struct S {
// error: cannot convert 'T' to 'const int' in initialization
static const int b = T{};
};
int main() {
}
奇怪的是,如果我使用常规大括号(T()),那么代码编译.这是一个bug吗?代码编译在clang中.
T()工作原因是因为编译器将其解释为不带参数的
函数声明.编译将通过一个明确的转换来完成:
static const int b = (const int) T{};
原文链接:https://www.f2er.com/c/115971.html