Which one is recommended and to be used to check the Object null-ness?
null != Object
or
Object != null
and other way
null == Object
or
Object == null
...and is there any difference between them?
|
(In)equality is commutative, so there is no difference. Historically the former stems from C to avoid accidentally assigning a value in a conditional statement, however that mostly applies to
if you accidentally omit one of the |
|||||||||
|
|
It's always more readable to use
because that reads as "the object is not null", which is literally what the condition is. The only case where you want to swap the two is to avoid accidentally using
which will return true even though it is not the desired behavior, when you wanted to say
but in reality not only do modern tools catch these kinds of mistakes, but wide use of the reverse can actually be an impediment to anyone who has to read the code. |
|||||||
|
Object(capitalO) (you know where I'm going with this) ;-) – Buhake Sindi Sep 28 '11 at 7:05