Is there any difference between below two statements
if (null != obj)
and
if (obj != null)
If both treate
The use of the first form
if (blah == obj)
stems from the days when compilers would not catch if (obj = blah) i.e. unintentional assignment, unless compile warning level was set to maximum
if (obj = blah)