Which is faster? switch or if-else ?
|
|
|||
|
closed as exact duplicate by Vinko Vrsalovic Oct 7 '08 at 7:01 |
|
|
This depends on the compiler. Generally, though, a The likelihood that you will ever see a performance difference between the two is basically nil, though. Whenever you have to choose between the two, use whichever is more readable. |
||
|
|
|
|
An optimized switch statement jumps to the right code after a lookup in a table, which is O(1). The if-else statements does a compare and you'll have to make a if-else tree if there are lots of options, which is of O(Log n). If you have lots of options to choose from: take the switch. |
||
|
|
|
|
Most modern compilers optimize both. The decision to use if/switch should only depend on coding style and readability. |
||
|
|
|
|
switch is completely faster, but if you have statements where you can't just replace a "if" statement with a "switch", then don't do it. |
||
|
|
|
|
If you use C/C++ switch is because it sets up a jump table, which is way faster. I am unsure how other compilers do it. |
||
|
|
|
|
Has been asked before: |
||||||
|
|
|
I wouldn't worry about it unless super speed is crucial. I would use what is easier to read. |
||
|
|
|
|
Depends on the compiler, of course, but in general switch should be optimal. |
||
|
|
