I see some code in Nimbus look like this:
if (nil == someObject)
but I usually type:
if (someObject == nil)
Are there any differences in these statements?
|
I see some code in Nimbus look like this:
but I usually type:
Are there any differences in these statements? |
|||
|
Technically no. The former, Nimbus, is using what is endearingly called "Yoda Conditions". The name of the game being foolproofing here. See, the problem is that this:
is totally valid, only one character away from
your compiler will freak out, preventing the issue. Personally, I hate Yoda Conditionals, as I think they're hard to read. It does mean being extra careful with my code, but hey, I'm the better for it, right? It all comes down to style here, so whatever makes you more comfortable, go for. Oh, and if you're using Xcode, this is nearly a moot point. If you check out this question, you'll see that Xcode now warns you if you attempt to do an assignment within an
making the issue much harder to miss. |
|||
|
|
|
No. (Extra blah blab blah for SO minimum post rules. Weren't they useful?) |
|||||||||||||
|
|
They're functionally the same, it's just a coding style issue. In the olden days, your compiler wouldn't warn you if you missed out an equals sign.
Probably doesn't do what you want. But if you invert them:
then the compiler will complain. These days it probably doesn't make any difference. |
|||||
|
|
No. but below code is more readability.
|
|||
|
|
|
The only difference nowadays is that the second form is more readable (or maybe it's subjective and it's only me who prefer it). |
|||
|
|
if (nil == someObject && someObject == nil) NSLog(@"woohoo!");– esqew Aug 16 '12 at 15:08