Worrying about my web application's performances, I am wondering which of "if/else" or switch statement is better regarding performance?
|
That's micro optimization and premature optimization, which are evil. Rather worry about readabililty and maintainability of the code in question. If there are more than two Alternatively, you can also grab Polymorphism. First create some interface:
And get hold of all implementations in some
Finally replace the
It might be microslower than As you're talking about webapplications, you can make use of
If you're worrying about Java EE webapplication performance in general, then you may find this article useful as well. There are other areas which gives a much more performance gain than only (micro)optimizing the raw Java code. |
|||||||||||||||||||
|
|
It's extremely unlikely that an if/else or a switch is going to be the source of your performance woes. If you're having performance problems, you should do a performance profiling analysis first to determine where the slow spots are. Premature optimization is the root of all evil! Still, you did ask about performance, and it's possible to talk about the relative performance of switch vs. if/else with the Java compiler optimizations. First note that in Java, switch statements operate on a very limited domain -- integers. In general, you can view a switch statement as follows:
where
For all other cases, a switch statement is exactly as efficient as the equivalent series of if/else statements. The precise values of α and β depend on a number of factors and are determined by the compiler's code-optimiziation module. Finally, of course, if the domain of |
||||
|
|
I totally agree with the opinion that premature optimization is something to avoid. But it's true that the Java VM has special bytecodes which could be used for switch()'s. See WM Spec (lookupswitch and tableswitch) So there could be some performance gains, if the code is part of the performance CPU graph. |
|||||
|
|
According to Cliff Click in his 2009 Java One talks A Crash Course in Modern Hardware:
You can get his full slides here. Cliff gives an example (finishing on Slide 30) showing that even with the CPU doing register-renaming, branch prediction, and speculative execution, it's only able to start 7 operations in 4 clock cycles before having to block due to two cache misses which take 300 clock cycles to return. So he says to speed up your program you shouldn't be looking at this sort of minor issue, but on larger ones such as whether you're making unnecessary data format conversions, such as converting "SOAP → XML → DOM → SQL → …" which "passes all the data through the cache". |
||||
|
|
|
I remember reading that there are 2 kinds of Switch statements in Java bytecode. (I think it was in 'Java Performance Tuning' One is a very fast implementation which uses the switch statement's integer values to know the offset of the code to be executed. This would require all integers to be consecutive and in a well-defined range. I'm guessing that using all the values of an Enum would fall in that category too. I agree with many other posters though... it may be premature to worry about this, unless this is very very hot code. |
|||
|
|
ifetc. – jldupont Jan 18 '10 at 14:20