vote up 4 vote down star
1

Is there such a thing? First time I encountered a practical need for it, but I don't see one listed in stroustrup. I intend to write:

// Detect when exactly one of A,B is equal to five.
return (A==5) ^^ (B==5);

But there is no ^^ operator. Can I use bitwise ^ here and get the right answer (regardless of machine representation of true and false)? I never mix & and &&, or | and ||, so I hesitate to do that with ^ and ^^.

I'd be more comfortable writing my own "bool XOR(bool,bool)" function instead.

flag
5  
The usual terminology for the "||" and "&&" operators is "short-circuiting", not "logical". You may be misunderstanding the difference between "&" (bitwise, always evaluates both operands), and "&&" (right hand operand only evaluated if the left hand operand evaluates to "true"). As Mehrdad points out, XOR must always evaluate both arguments, so there's no short-circuit version. – Jim Lewis Oct 20 at 19:10
4  
Actually, Jim, that's not the only difference between & and && for example... 1 && 2 is True. but 1 & 2 => 0. Because of that, I think that "short circuiting" is just a property that they happen to have. Logical is the more important feature... – Brian Postow Oct 20 at 19:27
Not to mention that 2 && 3 == true, but 2 & 3 == 2. – David Thornley Oct 20 at 19:54
David Thomley: Well, yeah, but 2 ==> true, so that's ok... Remember, there really aren't any booleans... – Brian Postow Oct 20 at 19:58

5 Answers

vote up 27 vote down check

The != operator serves this purpose for bool values.

link|flag
Haha, good point! Will use that. – RAC Oct 20 at 19:05
If both are false, doesn't the XOR should return false??? In this case, the != would return true. – David Brunelle Oct 20 at 19:33
David: F != F ==> F. – Brian Postow Oct 20 at 19:34
2  
Note that this only works for booleans. And ^ would work perfectly well there. 2 !=1 => 1 which is not what you want! as LiraNuna says, putting a ! infront of both sides solves that problem. but again, then you can use bitwise ^... – Brian Postow Oct 20 at 20:11
1  
Right, I was careful to mention "for bool values" because it doesn't necessarily do what you might want for non-booleans. And as this is C++, there exists a real bool type instead of having to use int for that purpose. – Greg Hewgill Oct 20 at 21:19
show 3 more comments
vote up 11 vote down

The XOR operator cannot be short circuited; i.e. you cannot predict the result of an XOR expression just by evaluating its left hand operand. Thus, there's no reason to provide a ^^ version.

link|flag
1  
@RAC: Actually, it's an important thing to know. That's why things like if (x != NULL && x->IsValid()) work correctly. With &, it would try to evaluate x->IsValid() even if the x pointer is null. – Mehrdad Afshari Oct 20 at 19:14
4  
-1 because the main difference between && and & is not just the short circuiting. 1 && 2 is True, but 1 & 2 is false. Short circuiting is just a handy side effect. – Brian Postow Oct 20 at 19:28
1  
The answer is not talking about && and & at all. Its point is that there is no reason to introduce ^^. The property that ^^ would regard any non-null value as 1 is not really useful, i suspect. Or at least i can't see any use. – Johannes Schaub - litb Oct 20 at 19:34
2  
Also C++ != other-languages. In C and C++ as shown above short circuit is not just some-nice-to-have-stuff but it's fundamentally important. :) – Johannes Schaub - litb Oct 20 at 20:01
4  
Then you should read Dennis Ritchie's answer to why it doesn't exist: it.usyd.edu.au/~dasymond/mirror/… – Johannes Schaub - litb Oct 20 at 20:21
show 28 more comments
vote up 5 vote down

Proper manual logical XOR implementation depends on how closely you want to mimic the general behavior of other logical operators (|| and &&) with your XOR. There are two important things about these operators: A) they guarantee short-circuit evaluation, B) they introduce a sequence point.

XOR evaluation, as you understand, cannot be short-circuited. So A is out of question. But what about B? If you don't care about B, then with normalized (i.e. bool) values operator != does the job of XOR in terms of the result. And the operands can be easily normalized with unary !, if necessary.

If you care about the extra sequence point though, neither != nor bitwise ^ is the proper way to implement XOR. One possible way to do XOR(a, b) correctly might look as follows

a ? !b : b

This is actually as close as you can get to making a homemade XOR "similar" to || and &&. This will only work, of course, if you implement your XOR as a macro. A function won't do, since the sequencing will not apply to function's arguments.

Someone might say though, that the only reason of having a sequence point at each && and || is to support the short-circuited evaluation, and thus XOR does not need one. This makes sense, actually. Yet, it is worth considering having a XOR with a sequence point in the middle.

For example, the following expression

++x > 1 && x < 5

has defined behavior and specificed result in C/C++ (with regard to sequencing at least). So, one might reasonably expect the same from user-defined logical XOR, as in

XOR(++x > 1, x < 5)

while a !=-based XOR doesn't have this property.

link|flag
vote up 4 vote down

For a true logical XOR operation, this will work:

if(!A != !B) {
    // code here
}
link|flag
Excellent point. You need the ! to normalize to booleans! – Brian Postow Oct 20 at 20:12
vote up 0 vote down

I use "xor" (it seems its a keyword, in codeblocks at least it gets bold) just as you can use "and" instead of && and "or" instead of ||.

if(first xor second)...

Edit. Yes it is bitwise sorry.

link|flag
I'm guessing that those are hidden #defines from somewhere. I'm pretty sure "and" and "xor" aren't keywords in ansi C... ( at least not C79) – Brian Postow Oct 20 at 19:39
3  
xor is identical to ^ ... – Johannes Schaub - litb Oct 20 at 19:43
@Brian Postow: I don't know what C79 is, but in C++98 and and xor are standard library macros. Thay are not from "somewhere", they are from <iso646.h>. These macros are also in C99 (not sure about C89/90). – AndreyT Oct 20 at 19:44
1  
@Brian Postow: ... xor stands for bitwise xor though, while and is logical and. – AndreyT Oct 20 at 19:45
I mistyped C89 as C79... and and xor etc are not in my copy of K&R. I don't think I've ever used iso686.h, at least not knowingly... and so, yes, they are #defines from somewhere, you just happen to know where that somewhere is B-) – Brian Postow Oct 20 at 19:48
show 4 more comments

Your Answer

Get an OpenID
or

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