up vote 6 down vote favorite
4
share [g+] share [fb]

What is the difference between

if(null==object)

and

if(object==null)

Please give the advantage for using the above.

link|improve this question
feedback

7 Answers

The difference comes if you accidentally type = instead of ==:

if (null = object) - Compiler error
if (object = null) - Bug!

link|improve this answer
In C# using assignment operator in place of boolean result is a compile time error. – Pradeep Nov 19 '08 at 17:31
that is good to know.. but the question wasn't originally marked 'C#' :D – warren Nov 19 '08 at 17:33
Indeed... I've removed the tag – Greg Nov 19 '08 at 17:34
:) Agree. It is tagged in .net. Doesn't VB.Net or managed C++ provide this feature? – Pradeep Nov 19 '08 at 17:36
VB uses = for both assignment and equality. – Joel Coehoorn Nov 19 '08 at 18:03
show 1 more comment
feedback

In the good old days, compilers would happily let you make assignments inside conditionals, leading to unintentional errors:

if(a = false)
{
  // I'll never execute
}
if(b = null)
{
  // I'll never execute 
}
b.Method(); // And now I'm null!

So some clever developers started putting their constants first in their conditionals:

if(false = a) // OOPS! Compiler error
{
  // ..
}
if(null = b) // OOPS! Compiler error
{
  // ..
}

So they trained themselves to avoid a whole class of errors. Most modern compilers will no longer let you make that error, but the practice continues.

There is one other advantage to always putting your constants first:

if(myString != null && myString.Equals("OtherString"))
{
  // ...
}

can (in .NET, Java, and most languages with an object-based string type) be reduced to:

if("OtherString".Equals(myString))
{
  // ..
}
link|improve this answer
feedback

Well, here is something I kind of like... use extensions:

public static class ObjectExtensions
{
    public static bool IsNull(this object target)
    {
        return null == target;
    }
}

Now, you can forget about it completely:

if(item.IsNull())
link|improve this answer
I don't like that. I think is going a much too far with extensions. Also, I don't like calling static methods on member variables. And then it also requires a double take to see someone calling a method on a variable that presumably may be null. ... But it does work I suppose. – BobbyShaftoe Jan 9 '09 at 1:32
So, in essence, you just don't like extension methods... – Brian Genisio Jan 12 '09 at 22:24
feedback

No difference. (null == object) is a practice from C/C++, where "=" is both used as assignment operator, and as comparison operator.

There were too many errors when if (object = null) was used.

link|improve this answer
Now, be brave, and tell me why this is down voted. – Sunny Nov 19 '08 at 17:31
I have no connection with this post, but why someone just down voted it? I agree that it is duplicating the opinions but then instead of down voting person should just keep quite. – Pradeep Nov 19 '08 at 17:33
because the answer as originally submitted was neither complete nor helpful - "No difference" isn't enough :) – warren Nov 19 '08 at 17:34
It's not a dup at all (the first 3 answers, including this one) appeared at the same time. And different explanations. Anyway, I just hate when something id downvoted w/o reason. I always put a comment when I downvote. – Sunny Nov 19 '08 at 17:36
Get over it, Sunny. In the end you'll earn +8 pt, because someone (maybe me) will upvote your answer ;-) – splattne Nov 19 '08 at 17:37
show 7 more comments
feedback

Some prefer if (null == object) so that if you accidentally type = instead of ==, you get a compile error instead of an assignment.

link|improve this answer
... if you're using C or C++, and haven't got warnings turned up high enough. – Jon Skeet Nov 19 '08 at 18:05
feedback

Logically, there is no difference.

From an error checking point of view, the first is more desirable because if you miss an equals sign (=), the compiler will let you know you can't make an assignment to a constant.

link|improve this answer
feedback

In many languages == is the comparison operator = is the assignment operator.

It very easy to type = when you really mean ==.

Therefore the convention of typing constant==variable is preferred.

constant=variable will not compile thus showing you, your error.

variable=constant will compile and will do the wrong thing at runtime.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown