Example:
We found this is some vendor written code and we're trying to figure out why they'd do this.
bool tmp = false;
if (somecase)
tmp = true;
if (someOtherCase)
tmp |= true;
|
For no good reason at all. A boolean value Change it to |
|||||||||||||||||
|
|
Perhaps one of the boolean literals used to be a variable, and they just didn't think to change the operator when they changed the operand. Obviously the logic is equivalent. More likely, they were thinking that in the second case, they want to retain the result of evaluating the first "if" condition. Of course, that's false reasoning. A simpler equivalent statement:
EDIT As pickypg notes, this statement could be confusing, since most people don't expect Or, if there are no side effects to the |
|||||||||
|
|
The actual code can be rewritten as
Or even better as
|
|||||||||||
|
|
Interesting - that looks like it's doing the equivalent:
Which will always set tmp to true. |
|||
|
|
|
Like the other op= operators, However, it doesn't make any sense to have a constant on the right-hand side.
Some possible explanations are:
|
|||
|
|
|
The ultimate result will be "If any of the cases is true, the result will be true." There is no reason that you have to use the operator though, since the |
|||||||
|
|
A clever compiler could avoid the assignment in this case, though it probably wouldn't as it shouldn't short-circuit a bitwise operation. In any event, it seems like a micro-optimization. In reality I suspect it's a hold-over pattern the author has from using bit flags (or s/he just doesn't understand how it works). It would be better as:
(and then inline the temporary if you only use it once) Note that, when using flags, it does make sense.
|
|||||||||||||
|
|
Its an expression using the |= assignment operator. Check MSDN |
|||
|
|
for bools not so much however for bitflags this can allow code like this:
this allows some flags to be easily commented out (and makes the used flags a tad more readable IMO) |
|||
|
|
|
This is equivalent to
EDIT: Which is equal to
I concur with the rest of the posters here...! More information here |
||||
|
|
true? Using|=on bools is perfectly reasonable, using|= truerarely is. – CodesInChaos Mar 28 '12 at 14:43|=operators in its example... – Brad Christie Mar 28 '12 at 14:44