c – 将`nullptr`分配给`bool`类型.哪个编译器正确?

我有一小段代码将nullptr分配给bool类型.
#include <iostream>

int main()
{
    bool b = nullptr;
    std::cout << b;
}

在clang 3.8.0工作正常.它给出了输出0. Clang Demo

但是g 5.4.0给出了一个错误:

source_file.cpp: In function ‘int main()’:
source_file.cpp:5:18: error: converting to ‘bool’ from ‘std::nullptr_t’ requires direct-initialization [-fpermissive]
         bool b = nullptr;

哪个编译器正确?

解决方法

来自C标准(4.12布尔转换)

1 A prvalue of arithmetic,unscoped enumeration,pointer,or pointer
to member type can be converted to a prvalue of type bool. A zero
value,null pointer value,or null member pointer value is converted
to false; any other value is converted to true. For
direct-initialization (8.5),a prvalue of type std::nullptr_t can be
converted to a prvalue of type bool; the resulting value is false.

所以这个宣言

bool b( nullptr );

这是有效的

bool b = nullptr;

是错的.

我自己在isocpp已经指出了这个问题

相关文章

本程序的编译和运行环境如下(如果有运行方面的问题欢迎在评...
水了一学期的院选修,万万没想到期末考试还有比较硬核的编程...
补充一下,先前文章末尾给出的下载链接的完整代码含有部分C&...
思路如标题所说采用模N取余法,难点是这个除法过程如何实现。...
本篇博客有更新!!!更新后效果图如下: 文章末尾的完整代码...
刚开始学习模块化程序设计时,估计大家都被形参和实参搞迷糊...