vote up 1 vote down star

Dupe: http://stackoverflow.com/questions/302701/null-difference

A lifetime ago I came across an article that explained that the following were not equal (in c#):

if (o == null) {}
if (null == o) {}

The article explained that the latter was preferred because it resulted in a more accurate test. I've been coding like that ever since. Now that I understand so much more I was looking for the article, or another like it, to see what the exact findings were, but I can't find anything on the subject.

Thoughts? Is there a difference? First glance would say no. But who knows what happens in the bowels of IL and C# compilation.

flag

Re: "But who knows what happens in the bowels of IL and C# compilation." -- Anyone with a copy of reflector? – Rich B Jan 8 '09 at 16:18
;) I thought that was for when one wanted see how they looked from the codes point of view... I saw no diff, I even did performance tetsing with no diff. That's why I asked. I prefer if (o==null)..it's more readable to me. Now, I can use it again. :) – Tony Basallo Jan 8 '09 at 16:26
checked with reflector, "ldnull, ldarg.1, ceq, ldc.i4.0, ceq" compared to "ldarg.1, ldnull, ceq, ldc.i4.0, ceq" – Jimmy Jan 8 '09 at 16:26
If the IL is equivalent, then why on earth would it matter? – Rich B Jan 8 '09 at 16:37
That's why I asked - it didn't make sense. Perhaps I was missing something. Memories play a terrible trick on one and I thought there was some really good reasoning behind it - it was a c# exmaple after all. – Tony Basallo Jan 8 '09 at 16:50

closed as exact duplicate by Paul Jan 8 '09 at 16:20

6 Answers

vote up 7 vote down check

it's an old habit to prevent you from typing if (o = null). if (null = o) is a syntax error. kind of pointless in C#, because null values aren't ever coerced into booleans.

link|flag
vote up 0 vote down

I work with Java ..and I do have the habit of having constants on the LHS for all commutative comparisons.

"name".equals(name)

 null == obj

"55".compareTo(numString)

etc..Just avoiding unnecessary NullPointerExceptions...

link|flag
For string literals (i.e. the first and third), that makes sense. For the middle one, it's an unnecessary readability penalty. – Jon Skeet Jan 8 '09 at 16:25
vote up 0 vote down

Duplicate: http://stackoverflow.com/questions/302701/null-difference

link|flag
Then edit the question, and vote to close. This is not an answer. – Rich B Jan 8 '09 at 16:16
@Rich: Yes, but I have no rights to close the question as dup. So instead of voting me down, do the right thing and close the question with a dup note. With your rep you should be able to do this. – Sunny Jan 8 '09 at 16:18
@Sunny, upvoted you anwyay but a comment on the question is probably better than an answer for this – Paul Jan 8 '09 at 16:21
@Sunny: This answer is not helpful to answer the question, so it is downvoted. Next time leave it as a comment or edit. I can only vote to close anyway. You can always just delete the answer. – Rich B Jan 8 '09 at 16:25
This answer is helpful - one more click and you're at the answer. I really don't see this as being a problem - and it's more prominent than a comment would have been, too. – Jon Skeet Jan 8 '09 at 16:26
show 1 more comment
vote up 2 vote down

The latter is a holdover from the C/C++ days, where it was possible to accidentally assign a value instead of compare. C# won't allow you to do this, so either/or is acceptable (but I find the former more readable).

link|flag
vote up 2 vote down

In c# there's no difference. It's an old habit from C/C++ developers to avoid a common bug where this is correct syntax:

if(o = null)

In C# that wouldn't compile but in C and C++ it would, leaving you with a pretty nasty bug. Therefore, many people got used to doing

if(null == o)
link|flag
vote up 0 vote down

Irrelevant for C#, this is from C. See this question for a discussion.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.