vote up 2 vote down star
1

I received this code in a previous question:

double d = double.Parse ("$10.10", NumberStyles.AllowCurrencySymbol | NumberStyles.AllowDecimalPoint | NumberStyles.AllowParenthesis)NumberStyles.Currency);

I have seen the '|' used to join parameters together before, but I don't understand what exactly it does. I know it's a bitwise OR, but how does it allow me to pass multiple flags?

Thanks.


Duplicate: http://stackoverflow.com/questions/276706/what-are-bitwise-operators

flag

exact dupe of stackoverflow.com/questions/276706/… – Triptych Feb 4 at 20:25
Sorry, my bad. It didn't give me a list of topics when I chose the title (too common words) – Malfist Feb 4 at 20:29
@Tryptych: I don't agree - knowing it's a bitwise operator, and what a bitwise operator does, does not answer the question "how does it allow me to pass multiple flags". – Harper Shelby Feb 4 at 20:30
@Harper The other question's accepted answer explains about passing flags. It's all good. I voted to close also. – Malfist Feb 4 at 20:32
I asked this question a few days before, it may help : stackoverflow.com/questions/495761/… – Canavar Feb 4 at 20:33

closed as exact duplicate by Triptych, Torsten Marek, Malfist, mmyers Feb 4 at 20:29

9 Answers

vote up 4 vote down check

Flags are generally created as integers of a power of 2.

1,2,4,8,16,etc.

Bitwise or merges each bit of the number... so 2 | 8 gets you 10... like so:

0010 <--2
1000 <--8
====
1010

Now this isn't like addition because 2 or 2 == 2. It works great for flags because you can compare with bitwise AND.

10 & 8 = 8 (returns true) 10 & 4 = 0 (returns false)

link|flag
vote up 0 vote down

Does not answer your question, but it is an known anti-pattern to use floating-point data types for currency values.

Why? Because of the precision loss.

Sample? (python here)

>>> 1000000000000000000000000000000000.0/100000000000000000000000000000000.0
9.9999999999999982

But it should be 10!

Better use long and count cents or fixed-point data types.

link|flag
C# is floating-point strict, no precision error. Doing that operation on doubles returns the expected value of 10. – Malfist Feb 4 at 20:36
Sorry, I didn't know we are in C# here. I did only a quick look on the sources and since I'm no C# programmer (as you can see) I posted that... – Johannes Weiß Feb 4 at 20:41
My bad. I'll remove my down vote. Not all languages have problems with Floating Point values. Early java did, python does (as you pointed out), I'm sure there are quite a few more. However, I'd like to point out that those large numbers for money are extremely unlikely. – Malfist Feb 4 at 20:46
From MSDN->Double: 'Remember that a floating-point number can only approximate a decimal number'. From MSDN->Decimal 'The Decimal value type is appropriate for financial calculations requiring large numbers of significant integral and fractional digits and no round-off errors.' – Johannes Weiß Feb 4 at 21:02
But you seems to be right that in C# for normal value things Double should be ok. Thanks for the removal of your down vote, that nice! – Johannes Weiß Feb 4 at 21:02
show 1 more comment
vote up 0 vote down

The key is the definition of those flags - they are all integral types, and all powers of 2 - 0,1,2,4,8,...

For illustration, let's define them.

enum NumberStyles
{  
    AllowCurrencySymbol = 1,  // 0x0001
    AllowDecimalPoint = 2,    // 0x0010
    AllowParenthesis = 4      // 0x0100
}

The bitwise OR combines them, so that your example line ends up with the value 0x0111. Inside the called function, the parameter can be tested like so:

if (param & NumberStyels.AllowCurrencySymbol){
    // do something
}

Since the values are all powers of 2, the bitwise OR preserves the values of all passed in flags.

link|flag
vote up 0 vote down

Very often, parameters like this are expressed as the numbers 1, 2, 4, 8, 16, ... That is, numbers with a single "1" in their binary representation.

Then, you can combine such parameters by doing a bitwise-or on them (this is better than a simple sum because you can use this to combine these further without having to know what's in them)

e.g if par1 = (1000 | 0001) and par2 = (1000 | 0100) then par1 = 1001 and par2 = 1100

and you can still do par3 = par1|par2 = 1101

link|flag
vote up 1 vote down

Assume NumberStyles.AllowDecimalPoint is mapped to 1, NumberStyles.AllowParenthesis is mapped to to, in binary that is 00000001 and 00000010 with binary or you get 00000011. The called function can then easily distinguish between the flags.

The "magic" is that you only use powers of 2 since they contain only one 1-bit.

link|flag
vote up 0 vote down

The flags are defined as 0x00000001, 0x00000002, 0x00000004, and so on. They each consist of one bit (always at a different place), so xor-ing them together cannot lose information.

link|flag
vote up 3 vote down

There is a great answer for this here: http://stackoverflow.com/questions/276706/what-are-bitwise-operators

link|flag
That's the best concise explanation of bitwise operations I think I ever read. +1 – hometoast Feb 4 at 20:28
vote up 4 vote down

Think of it like this

AllowCurrentSymbol = 1000 (binary, 8 decimal)
AllowDecimalPoint  = 0100 (4 decimal)
AllowParenthesis   = 0001 (1 decimal)

put them together and you've got a mask of each item. You're just setting flags. Or in other words, each value only occupies 1 bit of memory.

link|flag
vote up 0 vote down

NumberStyles class is an 'Enum' so you can do bitwise on Enumerations

link|flag

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