vote up 3 vote down star

When I conpile this code:

BitArray bits = new BitArray(3);
bits[0] = true;
bits[1] = true; 
bits[2] = true;

BitArray moreBits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;

BitArray xorBits = bits.Xor(moreBits);

foreach (bool bit in xorBits)
{
Console.WriteLine(bit);
}

I get the following output:

True True True

When I do an xor on two boolean values by saying true ^ true i get false.

Is there something wrong with the code. My memory of the truth table for XOR was that True XOR True is false.

flag

66% accept rate
Frameworks like C#'s or Java's are almost never at fault because so many other people are using them and testing them. Always check your own code first. In this case Kent's answer covers it. – Keith Mar 12 at 13:32
yeah I tried to delete the question once I'd noticed that but because his answer has been voted up I can't delete it. Somone else close it. – Omar Kooheji Mar 12 at 14:43
Why is this getting up voted? – Omar Kooheji Mar 12 at 15:06
you can close your own question – Fredou Mar 12 at 15:44
No you can votw to close it, but not close it... I need 3 more votes. and it's been upvoted again... I despair... do people actually read questions? At least Kent got a good answer badge for spotting my idiocy... – Omar Kooheji Mar 12 at 16:12
show 1 more comment

3 Answers

vote up 20 vote down check

Copy and paste error.

BitArray moreBits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;

That should be:

BitArray moreBits = new BitArray(3);
moreBits[0] = true;
moreBits[1] = true;
moreBits[2] = true;

HTH, Kent

link|flag
vote up 3 vote down

You are setting bits to true twice. You are not settings moreBits to true, so it defaults to all-false. I blame copy/paste!

EDIT: in the short time it took me to write this Kent answered and got upvoted 8 times!

link|flag
+1... awww.. we've all been there dude :) – Ian Quigley Mar 12 at 15:34
vote up 1 vote down

BitArray doesn't support Add(), so one-line initialization is a bit ugly:

 BitArray bits     = new BitArray(new[]{ true, true, true });
BitArray moreBits = new BitArray(new[]{ true, true, true });

But it's less error-prone than original example in this case.

Edit: made slightly more elegant per Lucas's comment.

link|flag
you can still reduce it slightly: new BitArray(new[] { true, true, true }); – Lucas Mar 12 at 15:38
good point, Lucas. I'll update the code. – DK Mar 12 at 18:52
+1 good way to avoid this very common human error – Lucas Mar 16 at 16:43

Your Answer

Get an OpenID
or

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