0

这段代码 test.cc

#include <iostream>
int main(){
    int a = 10;
    bool b {a};
    bool c (a);
    std::cout << a
              << " "
              << b 
              << " "
              << std::endl;
    return 0;
}

在 clang 或 gcc 中

$clang++ -w test.cc
<source>:4:13: error: non-constant-expression cannot be narrowed from type 'int' to 'bool' in initializer list [-Wc++11-narrowing]
    bool b {a};
            ^
<source>:4:13: note: insert an explicit cast to silence this issue
    bool b {a};
            ^
            static_cast<bool>( )
1 error generated.

$g++ -w test.cc ; ./a.out
10 1

Clang 只是在第 4 行给出错误消息,但错过了第 5 行。在 GCC 中,它编译得很好。

转载于godbolt: https ://godbolt.org/z/rzxTSg

我想知道使用“b {a};”有什么区别 和“c(a);” 初始化一个值。

我想我可能会错过一些东西,有人可以帮我吗?谢谢~

4

0 回答 0