Are there any performance differences between using if-else and case statements when handling multiple conditions?
Which is preferred?
|
Are there any performance differences between using if-else and case statements when handling multiple conditions? Which is preferred? |
|||||
|
|
Use the one that's most readable in the given context. |
|||
|
|
In some languages, like C, And anyway it probably won't matter, micro optimizations are (almost) never useful. |
|||
|
|
|
When you have more than one ifelse, I recommend switch/select. Then again, it doesn't always work. Suppose you something like that (not recommended but for example only)
Using a switch/select is NOT the way to go. However, when querying for a specific value for a variable like this
In those case, I highly recommend it because it is more readable for other people. |
||||
|
|
|
Some programming languages restrict when you can use Performance characteristics may differ between the two techniques, but you're unlikely to be able to predict in advance what they are. If performance is really critical for this code in your application, make sure you profile both approaches before deciding, as the answers may surprise you. Normally, performance differences will be negligible, and you should therefore choose the most readable, understandable and maintainable code, as you should in pretty much any other programming situation. |
|||
|
|
|
Case statements are generally preferred for readability and are generally faster if there is any speed difference, but this does not apply to every possible environment. You could probably write a test that shows which is faster for your environment, but be careful with caching and compiler optimizations. |
|||
|
|
|
For that reason, you'd want to use a
The larger the number of "elseif"s, the more attractive a |
|||
|
|
|
I will add to some of the answers here. This is not a performance question, and if you are really concerned about performance... write a test and see which is faster. However, this should be a question about which is proper to use, not which is better. If you have multiple if/else statements then do yourself a favor and use a case statement. If it is a simple if/else then use an if/else. You'll thank yourself later. |
|||
|
|