vote up 0 vote down star

Possible Duplicate:
If/Else vs. Switch

Hi All, I want to know when if statement is good over switch or vice versa.....

flag

Duplicate: stackoverflow.com/questions/395618/… – S.Lott Oct 15 at 20:33

closed as exact duplicate by S.Lott, Dana, DJ, Austin Salonen, sixlettervariables Oct 15 at 21:24

5 Answers

vote up 2 vote down check

The compiler will often turn switch statements into if/else statements so it really doesn't matter. Choose the one you find to be most readable.

If you find that you have a lot of decision branches perhaps a polymorphic solution would be better.

link|flag
1  
I thought switch statements were converted to jump tables? – Jason Oct 15 at 20:31
I thought that switch statements were treated like a "jump" where it only evaluated matching conditions and all if conditions (along with else's and if else's) being ran one by one until a match was found? I am not near a machine that I can look, though. My rule of thumb has always been one or two conditions, if or if/else. Anything more, switch for readability. – joseph.ferris Oct 15 at 20:33
It depends. See my answer: stackoverflow.com/questions/1574826/… – Drew Noakes Oct 15 at 20:38
vote up 0 vote down

The switch statement is definitely the faster then a if else if. There are speedtest that have been supplied on it by BlackWasp http://www.blackwasp.co.uk/SpeedTestIfElseSwitch.aspx

Check it out

link|flag
vote up 1 vote down

If you are switching on strings, then the C# compiler emits chained ifs anyway, so just do whatever is more readable for you.

Switching on numeric values works slightly differently. If you have large enough sets of values that are close together, then the C# compiler creates a jump table in the IL. This jump table does a binary search within the values in question in order to determine which exact instruction to jump to. This can be very fast as binary search has O(log N) complexity. The OpCode that performs this is, unsurprisingly, Switch.

Interestingly, if the values that you provide case statements for fall into two consecutive groups (eg. 0,1,2,3,10,11,12,13) then the compiler will put an outer if statement around two jump tables. Similarly, if you have a mostly-populated series (1,2,3,5,6,8) then the missing indexes are populated with labels that jump to the default branch.

If you don't have loads of items (personally I would say more than 10 or so), then you should just go with whatever is easier to read.

link|flag
vote up 0 vote down

It's worth noting that in C#, the switch statement does not allow fallthrough without explicitly calling other labels. There's no risk of accidentally forgetting a break statement.

link|flag
vote up 0 vote down

Basically the choice between if and switch comes down to number of conditions you would like to test. I would use switch if I have to test a variable for more than 2 values. Otherwise if-else if-else becomes lengthy.

link|flag

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