vote up 16 vote down star
2

I'm always surprised that even after using C# for all this time now, I still manage to find things I didn't know about...

I've tried searching the internet for this, but using the "~" in a search isn't working for me so well and I didn't find anything on MSDN either (not to say it isn't there)

I saw this snippet of code recently, what does the tilde(~) mean?

/// <summary>
/// Enumerates the ways a customer may purchase goods.
/// </summary>
[Flags]
public enum PurchaseMethod
{   
    All = ~0,
    None =  0,
    Cash =  1,
    Check =  2,
    CreditCard =  4
}

I was a little surprised to see it so I tried to compile it, and it worked... but I still don't know what it means/does. Any help??

flag

50% accept rate

6 Answers

vote up 25 vote down check

~ is the unary one's complement operator -- it flips the bits of its operand.

~0 = 0xFFFFFFFF = -1

in two's complement arithmetic, ~x == -x-1

the ~ operator can be found in pretty much any language that borrowed syntax from C, including C++/C#/Java/Javascript.

link|flag
That's cool. I didn't realise you could do that in an enum. Will definitely use in future – Orion Edwards Dec 22 '08 at 23:31
So it's the equivalent of All = Int32.MaxValue? Or UInt32.MaxValue? – Joel Mueller Dec 23 '08 at 18:52
All = (unsigned int)-1 == UInt32.MaxValue. Int32.MaxValue has no relevance. – Jimmy Dec 23 '08 at 20:00
I would imagine that All = Int32.MinValue? – Stevo3000 Apr 24 at 14:32
2  
@Stevo3000: Int32.MinValue is 0xF0000000, which is not ~0 (it's actually ~Int32.MaxValue) – Jimmy Apr 25 at 0:38
vote up 4 vote down

Just a side note, when you use

All = Cash | Check | CreditCard

you have the added benefit that Cash | Check | CreditCard would evaluate to All and not to another value (-1) that is not equal to all while containing all values. For example, if you use three check boxes in the UI

[] Cash
[] Check
[] CreditCard

and sum their values, and the user selects them all, you would see All in the resulting enum.

link|flag
vote up 3 vote down

Its better than the

All = Cash | Check | CreditCard

solution, because if you add another method later, say:

PayPal = 8 ,

you will be already done with the tilde-All, but have to change the all-line with the other. So its less error-prone later.

regards

link|flag
vote up 19 vote down

I'd think that:

[Flags]
public enum PurchaseMethod
{
    None = 0,
    Cash = 1,
    Check = 2,
    CreditCard = 4,
    All = Cash | Check | CreditCard
 }

Would be a bit more clear.

link|flag
It certainly is. The only good effect of the unary is that if someone adds to the enumeration, All automagically includes it. Still, the benefit doesn't outweigh the lack of clarity. – ctacke Dec 22 '08 at 21:47
I don't see how that's more clear. It adds either redundancy or ambiguity: does "All" mean "exactly the set of these 3" or "everything in this enum"? If I add a new value, should I also add it to All? If I see somebody else hasn't added a new value to All, is that intentional? ~0 is explicit. – Ken Apr 2 at 18:46
1  
Personal preference aside, if the meaning of ~0 was as clear to the OP as it is to you and I, he never would have posed this question in the first place. I'm not sure what that says about the clarity of one approach versus the other. – Sean Bright Apr 2 at 19:36
vote up 2 vote down

It's a complement operator, Here is an article i often refer to for bitwise operators

http://www.blackwasp.co.uk/CSharpLogicalBitwiseOps.aspx

Also msdn uses it in their enums article which demonstrates it use better

http://msdn.microsoft.com/en-us/library/cc138362.aspx

link|flag
vote up 8 vote down
public enum PurchaseMethod
{   
    All = ~0, // all bits of All are 1. the ~ operator just inverts bits
    None =  0,
    Cash =  1,
    Check =  2,
    CreditCard =  4
}

Because of two complement in C#, ~0 == -1, the number where all bits are 1 in the binary representation.

link|flag
Looks like they are creating a bit flag for the payment method: 000 = None; 001 = Cash; 010 = Check; 100 = Credit Card; 111 = All – Dillie-O Dec 22 '08 at 21:44
It's not two's complement, that's invert all the bits and add one, so that the two's complement of 0 is still 0. The ~0 simply inverts all the bits or one's complement. – Bearddo Dec 22 '08 at 22:45
No, two's complement is simply inverting all the bits. – configurator Dec 22 '08 at 22:57
@configurator -- that's not correct. The ones complement is a simple inversion of bits. – Dave Markle Dec 22 '08 at 23:06
c# uses two complement to represent negative values. of course ~ is not two complement, but simply inverts all bits. i'm not sure where you got that from, Beardo – Johannes Schaub - litb Dec 22 '08 at 23:49
show 2 more comments

Your Answer

Get an OpenID
or

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