我有一小段代码将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已经指出了这个问题