What is the difference between
if(null==object)
and
if(object==null)
Please give the advantage for using the above.
|
What is the difference between
and
Please give the advantage for using the above. | ||||
|
feedback
|
|
The difference comes if you accidentally type
| |||||||||||
feedback
|
|
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:
| |||
|
feedback
|
|
Well, here is something I kind of like... use extensions:
Now, you can forget about it completely:
| |||||
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. | |||||||||||
feedback
|
|
Some prefer | |||
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 ( | |||
|
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. | |||
|
feedback
|