I have a question about "|=" in c++, how this operator works, for example:

bool result;

result |= callFunctionOne(sig);
result |= callFunctionTwo(sig);
result |= callFunctionThree(sig);
result |= callFunctionFour(sig);

and the function called above, will reutrn "true" if the paramater sig is processed in the function, otherwish, return "false";

the sig can be processed only in one function each time, how the "|=" works?

link|improve this question

1  
That ain't right. You need to initialise result to zero. – TonyK Sep 26 '11 at 13:31
1  
It's cleaner to initialize it to false. Zero, when cast to bool will become false, so the net result is the same. But in general it's more readable to initialize variables with literals of the same type: float x = 0.0f; etcetera. – MSalters Sep 27 '11 at 8:47
feedback

4 Answers

up vote 6 down vote accepted

| is bitwise OR.

|= says take what is returned in one of your function and bitwise OR it with the result, then store it into result. It is the equivalent of doing something like:

result = result | callFunctionOne(sig);

Taking your code example:

bool result;

result |= callFunctionOne(sig);
result |= callFunctionTwo(sig);
result |= callFunctionThree(sig);
result |= callFunctionFour(sig);

and your logic of

will reutrn "true" if the paramater sig is processed in the function, otherwish, return "false";

So that means that if you don't define result, it will be by default FALSE.

result = false;

callFunctionOne returns TRUE

result = result | callFunctionOne;

result equals TRUE.

result = false;

callFunctionOne returns FALSE

result = result | callFunctionOne

result equals FALSE.

While it may seem that this is a boolean OR, it still is using the bitwise OR which is essentially OR'ing the number 1 or 0.

So given that 1 is equal to TRUE and 0 is equal to FALSE, remember your truth tables:

p   q   p ∨ q
T   T   T
T   F   T
F   T   T
F   F   F

Now, since you call each function after another, that means the result of a previous function will ultimately determine the final result from callFunctionFour. In that, three-quarters of the time, it will be TRUE and one-quarter of the time, it will be FALSE.

link|improve this answer
yes, the defual value of result is false – ratzip Sep 26 '11 at 13:43
feedback

a |= b is equivalent to a = a | b.

link|improve this answer
2  
And it's not equivalent to a = a || b. So b will be evaluated regardless of the current value of a. – Alan Stokes Sep 26 '11 at 13:05
@Alan: Yep. I think the distinction is easier to make once you realize that TRUE and FALSE are really 1 and 0, then you do the Truth Tables to break it down to see that it is bitwise OR, and not boolean per se. – 0A0D Sep 26 '11 at 13:19
feedback

To put it simple, it will assign true to result if any of those functions return true, and false otherwise. But there is one problem - result must be initialized, otherwise this bit operation will be performed on random initial value and could return true even if all of the functions returns false.

The operator itself is called "bitwise inclusive or".

link|improve this answer
feedback

The | operator is bitwise OR (if you know the boolean logic, on a bool variable it acts as a boolean OR). If one or many calls return true, result will be true. If all calls are returning false, the result is false.

Each time, it's the equivalent of result = result | callFunctionXXX(sig);

Remark: in your sample code, the variable result is not initialized. It should be "bool result = false;"

link|improve this answer
It's not boolean OR. – 0A0D Sep 26 '11 at 13:06
Well I find your downvote abusive. The operation performed, as the variable is a boolean, is definitely a boolean OR. My answer is clear, short and concise. Technically, the operator is named "bitwise OR", but that would not have helped OP much. I've edited my answer. – Jem Sep 26 '11 at 13:22
1  
It's a logical inclusive OR operation, which is what the bitwise OR does. Use the truth tables and you'll see that it is a logical disjunction. While boolean OR is similar, don't get tripped up because it says BOOLEAN as the keyword. Taken to the lowest level, it is really 1 and 0. But it's still not BOOLEAN OR nor is there really any concept of that in C++. It has BITWISE OR or short-circuit boolean operators, but not BOOLEAN OR. Just because it says BOOLEAN, does not mean it could be int abc = 1234; and then peform a BITWISE operation on that. Either way, it's not really called a BOOLEAN OR. – 0A0D Sep 26 '11 at 13:26
2  
@Jem: It's not boolean OR. Technical precision is important on SO. Even if you think the technical rigor will not help the OP, it is still important to be rigorous for those who may google this question in the future. – John Dibling Sep 26 '11 at 13:46
2  
@Jem: If you find the accepted answer to be overkill and undesirable, then SO may not be right for you. The accepted answer is a good example of what is expected here. – John Dibling Sep 26 '11 at 14:00
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.