I'm now to C# and could not find XNOR operator to provide this truth table:

a  b    a XNOR b
----------------
T  T       T
T  F       F
F  T       F
F  F       T

Is there a specific operator for this? Or I need to use !(A^B)?

link|improve this question

16  
This operator is more commonly known as == for boolean operands... – Magnus Hoff Aug 14 '11 at 0:21
@Magnus Hoff : nice very nice point! – sll Aug 14 '11 at 0:32
4  
I think the phrase "can't see the wood for the trees" is highly appropriate here. Voting up because we've all been here once or twice ;) – spender Aug 14 '11 at 0:38
Maybe the OP iz l33t k!d who wants to write awesome shellcodez and needs to somehow hide the comparison operation. It's a possibility... – Kerrek SB Aug 14 '11 at 0:40
1  
sorry, Kerrek, I'm not from that crowd. And spender is quite right here -) – trailmax Aug 14 '11 at 0:48
feedback

4 Answers

up vote 17 down vote accepted

XNOR is simply equality on booleans; use A == B.

This is an easy thing to miss, since equality isn't commonly applied to booleans. And there are languages where it won't necessarily work. For example, in C, any non-zero scalar value is treated as true, so two "true" values can be unequal. But the question was tagged , which has, shall we say, well-behaved booleans.

Note also that this doesn't generalize to bitwise operations, where you want 0x1234 XNOR 0x5678 == 0xFFFFBBB3 (assuming 32 bits). For that, you need to build up from other operations, like ~(A^B). (Note: ~, not !.)

link|improve this answer
3  
Of course it is!! I feel like stupid now -) – trailmax Aug 14 '11 at 0:40
@trailmax: No need to feel stupid, it's an easy thing to miss. (Cleaning up comments that were incorporated into the answer.) – Keith Thompson May 3 at 21:29
feedback

Nope, do it yourself using existing operators

XNOR =  (A && B) || (!A && !B);
link|improve this answer
feedback

No, You need to use !(A^B)

Though I suppose you could use operator overloading to make your own XNOR.

link|improve this answer
This is bitwise, not a logical – sll Aug 14 '11 at 0:20
I think the poster knows that as he's included it in his question. – Griffin Aug 14 '11 at 0:21
@sllev you almost got me, I had to double check it. In C# ^ is logical if operated on boolean. If operated on integral types, it is bitwise. Please see msdn.microsoft.com/en-us/library/zkacc7k1.aspx – trailmax Aug 14 '11 at 0:44
@trailmax: cool stuff, thanks for pointing on this! Really devil is in detail! – sll Aug 14 '11 at 0:47
feedback

XOR = A or B, but Not A & B or neither (Can't be equal [!=])
XNOR is therefore the exact oppoiste, and can be easily represented by == or ===.

However, non-boolean cases present problems, like in this example:

a = 5
b = 1

if (a == b){
...
}

instead, use this:

a = 5
b = 1

if((a && b) || (!a && !b)){
...
}

or

if(!(a || b) && (a && b)){
...
}

the first example will return false (5 != 1), but the second will return true (a[value?] and b[value?]'s values return the same boolean, true (value = not 0/there is a value)

the alt example is just the reversed (a || b) && !(a && b) (XOR) gate

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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