Possible Duplicate:
What is the difference between these (bCondition == NULL) and (NULL==bCondition)?
From this question it says "const object on left side of comparison" is some how "better" than doing otherwise. Why is this?
From this question it says "const object on left side of comparison" is some how "better" than doing otherwise. Why is this? |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Any decent compiler will warn you about assignment within a conditional expression, so that form isn't very relevant these days.
Use |
|||
|
|
|
This is to avoid the "=" versus "==" mistake. If you mean "==" but type "=" and the object on the LHS is constant, the compiler will complain. For example,
is preferred to
because if you type
then you'll get an error, but if you type
then you may get a bug! |
|||
|
|
if (5 == i)isn't as much any more used. It's supposed to stop from saying youif (i = 5)by mistake. Sometimes called "Yoda Conditions" it is. A page of that and some others here is. – chris Aug 30 '12 at 20:35