#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 – 将`nullptr`分配给`bool`类型.哪个编译器正确?全部内容,希望文章能够帮你解决c – 将`nullptr`分配给`bool`类型.哪个编译器正确?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)