Possible Duplicate:
What is the difference between these (bCondition == NULL) and (NULL==bCondition)?
I was going through a piece of C++ code and came across a code like
if (NULL != threadInfo)
{
...
...
}
I was just wondering is there any difference between using the expression
if (threadInfo != NULL)
{
...
...
}
what is said above. While reading the first one reads " If NULL not equals to ThreadInfo" and the second one reads "If threadInfo not equals to NULL". To me the second one makes more sense.

if(Constant == variable)in c/c++ because you'll get a compile error if you leave the second = off, trying to assign to a constant left hand expression. Maybe something similar? – asawyer Jul 26 '11 at 12:45if (true == true)) instead of variable and value. – Sander Jul 26 '11 at 12:45