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

前端之家收集整理的这篇文章主要介绍了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已经指出了这个问题

原文链接:https://www.f2er.com/c/111039.html

猜你在找的C&C++相关文章