vote up 3 vote down star

Possible Duplicate:
Conditional styles: if (0 == resultIndex) vs if (resultIndex ==0)

I've seen both in code, and I do not know why one is better over the other, but which do you prefer to use, and why?

flag

I know this is a duplicate but it's bloody hard to search on this! – Matt Hamilton May 22 at 6:32
I didn't see it in my searches or suggestions either, if so I apologize. – esac May 22 at 6:39
Here is one.. It has other duplicates list. stackoverflow.com/questions/892284/… – aJ May 22 at 6:46
My first programming language was C and I made that error few times before I learned what I'm actually doing. However I don't use the reversed form as I don't make that mistake that often and for me it (var == null) is more readable. But definitely you can get burned in C if you write "if (var = null)". – stefanB May 22 at 6:50
How did you find it aJ? – Vinko Vrsalovic May 22 at 6:53
show 1 more comment

closed as exact duplicate by David, aJ, soulmerge, Vinko Vrsalovic, lc May 22 at 7:02

7 Answers

vote up 14 vote down check

The if(null == var) practice comes from C, where you could accidentally write if(var = null) (note the assignment operator), which would compile (since in C everything not 0 is true) but will be a semantic error. So if(null == var) is a defensive practice, since null is an lvalue (again C/C++ terminology) and lvalues cannot be assigned to.

In modern languages (particularly in C#) compiler will warn you if you do assignment in if statement.

link|flag
> So if(null == var) is a defensive practice I did this one quite a few times in C/C++ for as you put it defensive reasons. It seems the answer on usage may depend on what programming language you are using. – Rob Segal May 22 at 6:36
+1 It comes from C and seems confirmed by those with other language backgrounds who failed to find any reason of it. – stefanB May 22 at 6:47
vote up 0 vote down

They both have the same functionality and produce the same result. The choice is purely a personal one to make.

I personally prefer the first because "var is null" or "var equals null" reads better than "null is var" or "var is null".

Some people prefer the second and claim it reduces typo-induced bugs because null = var causes an error while var = null still compiles. These days, however, compilers issue warnings for this, so I believe it is a moot point.

link|flag
I'm starting to get tired of people who downvote without commenting why. – lc May 22 at 7:03
vote up -1 vote down

Language-agnostic?

In Scheme, no ambiguity:

(null? var)
link|flag
vote up -1 vote down

Typically I tend to go unknown value then known value when I am comparing two values. That way I know first what I am looking in, giving context to the test. Most languages don't care, but I think some may.

link|flag
vote up 0 vote down

I prefer to use (var==null) myself. It makes more sense to me, since I'm checking "if var is null". The other order comes across when I read it as "if null is var", which never makes sense. I also like how VB.NET makes it quite readable, and makes a check for null different from other comparisons, with "if var is nothing".

link|flag
vote up -2 vote down

var == null is the obvious answer. Why would you check null, if you already know what null is? You have to have something to check, before you can check it, so logical ordering is "object == somevaluewearecheckingfor".

link|flag
1  
"Why would you check null, if you already know what null is?" -- You don't check null, you check if an equality statement holds. You also miss the whole C/C++ defensive programming technique point. – foljs May 22 at 6:56
my only point was that for readability it only makes sense to do var == null. you cant count how many apples you have if you don't have any – David Anderson May 23 at 15:41
vote up 7 vote down

I would say var==null because it's more like what you would actually say. "If my variable is null..." makes more sense than any variant of "If null is my variable..." or "If nothing is my variable..." etc.

link|flag
Wanted to make an answer but you already said what i wanted to say. So - i just upvoted yours. :) – Arnis L. May 22 at 6:31

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