When testing for NULL, I see a lot of code that uses !var. Is there a reason to use this kind of test as opposed to the more explicit var == NULL. Likewise would if (var) be a correct test for an item being non-null?
|
The difference between:
and
is in the second case the compiler have to issue a diagnostic if Also (as pointed by @bitmask in the comments) to use the Otherwise the two expressions are equivalent and it is just a matter of taste. Use the one you feel more confortable at. And for your second question |
|||||||||||||
|
|
The ISO/IEC 9899 standard states that:
That means the expressions you give are equally "correct". The reason to prefer one form over another is largely a matter of taste. |
|||||
|
|
From the C standard: Arithmetic types and pointer types are collectively called scalar types. The operand of the unary + or - operator shall have arithmetic type; of the ~ operator, integer type; of the ! operator, scalar type. The result of the logical negation operator ! is 0 if the value of its operand compares unequal to 0, 1 if the value of its operand compares equal to 0. The result has type int. The expression !E is equivalent to (0==E). So, that should answer your question. |
|||
|
|
|
The var == NULL version has one major advantage: it makes it possible for the compiler and static analysers to find one particular common bug. Suppose "var" is not a pointer, but an allocated variable. NULL is often declared as
Apart from the above advantage, it is also stylistically correct not to use the I would recommend to follow MISRA-C in this matter, which dictates that checks against NULL or zero should be made explicit. |
|||
|
|
varis a pointer object. Personally, I strongly prefervar == NULLbecause it's more explicit. Many C programmers tend to value terseness over explicitness. – Keith Thompson Sep 30 '12 at 20:19