我可以使用 if (pointer) 而不是 if (pointer != NULL) 吗?

Can I use if (pointer) instead of if (pointer != NULL)?(我可以使用 if (pointer) 而不是 if (pointer != NULL) 吗?)
本文介绍了我可以使用 if (pointer) 而不是 if (pointer != NULL) 吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

通过简单地编写 if(pointer) 来检查指针是否为 NULL 是否安全,或者我是否必须使用 if(pointer != NULL)?

Is it safe to check a pointer to not being NULL by writing simply if(pointer) or do I have to use if(pointer != NULL)?

推荐答案

你可以;空指针被隐式转换为布尔值 false 而非空指针被转换为 true.来自 C++11 标准,关于布尔转换的部分:

You can; the null pointer is implicitly converted into boolean false while non-null pointers are converted into true. From the C++11 standard, section on Boolean Conversions:

算术、无作用域枚举、指针或指向成员类型的指针的纯右值可以转换为类型的纯右值布尔.零值、空指针值或空成员指针值被转换为;任何其他值都转换为.类型的纯右值std::nullptr_t可以转换为纯右值类型bool;结果值是.

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 . A prvalue of type std::nullptr_t can be converted to a prvalue of type bool ; the resulting value is false .

这篇关于我可以使用 if (pointer) 而不是 if (pointer != NULL) 吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

What do compilers do with compile-time branching?(编译器如何处理编译时分支?)
Checking for NULL pointer in C/C++(在 C/C++ 中检查空指针)
Math-like chaining of the comparison operator - as in, quot;if ( (5lt;jlt;=1) )quot;(比较运算符的数学式链接-如“if((5<j<=1)))
Difference between quot;if constexpr()quot; Vs quot;if()quot;(“if constexpr()之间的区别与“if())
C++, variable declaration in #39;if#39; expression(C++,if 表达式中的变量声明)
if (cin gt;gt; x) - Why can you use that condition?(if (cin x) - 为什么你可以使用那个条件?)