How come C# doesn't have a conditional XOR Operator? example
true xor false = true
true xor true = false
false xor false = false
|
How come C# doesn't have a conditional XOR Operator? example
|
||||
| show 1 more comment |
|
In C#, conditional operators only execute their secondary operand if necessary. Since an XOR must by definition test both values, a conditional version would be silly. Examples:
|
||||
|
|
|
There is the logical XOR operator: Documentation: C# Operators and ^ Operator |
|||||
|
|
Question is a bit outdated but... It's how this operator should work:
This is how != operator works with bool types:
So as you see unexisting |
|||||
|
|
Oh yes, it does.
|
|||
|
|
Conditional xor doesn't exist, but you can use logical one because xor is defined for booleans, and all conditional comparisons evaluate to booleans. So you can say something like:
|
|||
|
|
It has the logical xor operator, See http://%5Benter%20link%20description%20here%5D%5B1%5D for more information. |
|||
|
|
|
While there is a logical xor operator
The parens are not necessary, but I added them for clarity. As pointed out by The Evil Greebo, this evaluates both expressions, but xor cannot be short circuited like and and or. |
|||||||||
|
|
This question has been affectively answered, but I came across a different situation. It's true that there is no need for a conditional XOR. It's also true that the ^ operator can be used. However, if you need to only test the "true || false" status of the operands then ^ can lead to trouble. For example:
In this example, if left is set to 10 (0xa) and right is set to 5 (0x5) the "success" branch is entered. For this (simplistic if silly) example, this would result in a bug since you shouldn't turn left AND right at the same time. What I gathered from the questioner is not that he actually wanted a conditional, but a simple way to perform the true/false on the values as passed to the xor. A macro could do the trick:
Feel free to slap me around if I'm off the mark :o) I read jimreed's answer below after I posted this (bad Yapdog!) and his is actually simpler. It would work and I have absolutely no idea why his answer was voted down... |
||||
|
|
!=work as a substitute? – Pascal Cuoq Jun 28 '11 at 14:14& | ^) vs conditional operators (&& ||). But you're right (of course), there is a logical XOR... – BoltClock♦ Jun 28 '11 at 14:15