If you have an object like NSString *someString, what is the difference, if any, between
if (!someString)
vs
if (someString == nil)
Thanks!
|
If you have an object like NSString *someString, what is the difference, if any, between
vs
Thanks! |
||||
|
|
|
The first syntax you use:
exploits a sort of "ambiguity" of C deriving from the fact that the original standard of C lacked a proper boolean type. Therefore, any integer value equalling 0 was interpreted as "false", and any integer value different from "0" was taken as "true". The meaning of In your specific case, This is fine in most conditions (I would say always), but in theory,
It is anyway more readable and since EDIT: about the definition of NULL... Whether the C standard defines NULL to be 0 is an interesting topic for me... According to C99 standard, section 7.17, "Common definitions ":
So, NULL is defined in stddef.h to an implementation-defined null pointer constant... The same document on page 47 states:
So, the null pointer constant (which is So, I think that basically it depends on whether the implementation decides that the result of converting a null pointer constant to a null pointer produces a pointer which converted back to an integer gives 0. It is not clear that a null pointer interpreted as an integer equals 0. I would say that the standard really try and enforce the null pointer being 0, but leaves the door open to systems where the null pointer was not 0. |
|||||||||||||||
|
|
For most pointers, they're equivalent, though most coders I know prefer the former as it's more concise. For weakly linked symbols, the former resolves the symbol (and will cause a crash if it's missing) while an explicit comparison against |
|||
|
|
|
In your case it means the same thing. Any pointer that does not point to Normally the exclamation mark operator negates a |
|||
|
|
|
If you mean to test the condition "foo is nil" you should say that: If you mean to test a boolean value for falsehood, Writing good code is about clearly conveying your intention not just to the compiler, but to the next programmer that comes along (possibly a future you). In both cases, the more explicit you can be about what you're trying to do, the better. All that aside, |
|||
|
|
|
The bang, exclamation,
However in C the logical not operator does something more like this:
So when you consider that both NULL and nil in Objective-C evaluate to 0, you know that the logical not operator applied to them will result in a 1. Now, consider the equality In C and Objective-C programs, conditionality is actually determined by int's, as opposed to real booleans. This is because there is no such thing as a boolean data type in C. So writing something like this works perfectly fine in C:
and in addition
Basically, any non-zero int will evaluate as 'true' in C. You combine that with the truth tables for logical negation and equality, and you quickly realize that:
are for all intents identical! So the next logical question is, why prefer one form over another? From a pure C view-point it would be mostly a point of style, but most (good) developers would choose the equality test for a number of reasons:
|
|||
|
|
|
But, ! is usually more used for boolean operations.
When you use |
|||
|
|