Is there any difference between below two statements
if (null != obj)
and
if (obj != null)
If both treate
No, but the second way is more common and more readable (and more logical in my opinion)