vote up 2 vote down star
1

I was wondering if there was any difference in the way the following code was compiled into assembly. I've heard that switch-case is more efficient than if else, but in this example I am not quite sure if that would be the case.

if(x==1){
...
}else if(x==2){
...
}else{
...
}

and

switch(x){
 case 1:
 ...
 break;

 case 2:
 ...
 break;

 default:
 ...
}
flag

4 Answers

vote up 6 vote down check

This has been asked before:

link|flag
Is the "exact duplicate" question the one about switch-vs-if for a 30-case switch when selecting one of two code-paths? – Mike F Oct 12 '08 at 18:37
vote up 1 vote down

Note too that the if/else construct can be more efficient if you know certain cases are more likely than others.

link|flag
vote up 0 vote down

A compiler will sometimes turn a switch into a jump-table, if the entries are contiguous (or nearly so). Or it could theoretically use a binary search to find the case instead of a linear series of tests, which would be faster if you had a large number of cases.

On the other hand, there's nothing stopping the compiler from doing the same optimisations on the same code converted into if/else.

So on a good compiler, switch can be faster in some cases. On a very good compiler, they'd be the same.

link|flag
vote up 1 vote down

In this specific case, the switch can be turned into a jump table. The if statement (if you write your = as == :-P) could still do the same thing if the compiler could tell that x isn't changing between the if clauses (which is usually the case, unless x is volatile or something).

link|flag
Those "==" always get me. – Jose Vega Oct 12 '08 at 18:22

Your Answer

Get an OpenID
or

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