Possible Duplicate:
If/Else vs. Switch
Hi All, I want to know when if statement is good over switch or vice versa.....
|
|
Hi All, I want to know when if statement is good over switch or vice versa.....
|
||
|
closed as exact duplicate by S.Lott, Dana, DJ, Austin Salonen, sixlettervariables Oct 15 at 21:24 |
|
|
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. |
||||||||
|
|
|
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 |
||
|
|
|
|
If you are switching on strings, then the C# compiler emits chained 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, 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 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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|