What is the difference between
if(null==object)
and
if(object==null)
Please give the advantage for using the above.
|
4
|
What is the difference between
and
Please give the advantage for using the above. |
|||
|
|
|
|
The difference comes if you accidentally type
|
||||||||||
|
|
|
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. |
||||||||||
|
|
|
Some prefer |
||
|
|
|
Logically, there is no difference. From an error checking point of view, the first is more desirable because if you miss an equals sign ( |
||
|
|
|
|
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. |
||
|
|
|
|
Well, here is something I kind of like... use extensions:
Now, you can forget about it completely:
|
||||
|
|
|
In the good old days, compilers would happily let you make assignments inside conditionals, leading to unintentional errors:
So some clever developers started putting their constants first in their conditionals:
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:
can (in .NET, Java, and most languages with an object-based string type) be reduced to:
|
||
|
|