I appreciate that anything that can be done by a switch statment, can be done by an if else statement.
But are there stylistic rules for when one should use the switch rather than if else statment.
|
I appreciate that anything that can be done by a switch statment, can be done by an if else statement. But are there stylistic rules for when one should use the switch rather than if else statment. |
|||||||||
|
|
Well, Still, the compiler is able to optimize |
||||
|
Switch has one advantage when it comes to clarity:
If the code for 2 and 4 are identical, it may be more clear than:
It's also easier for you (or another programmer) to split out the 2 and 4 cases. |
|||||
|
|
I use switch statements for enums, it is more readable that a if else if else if statements. However, you should try to avoid such checks in a OO design. |
|||
|
|
|
You use a switch statement when you are switching on different values of primitive / enum / wrapper types. (And not all primitive / wrapper types, just the supported ones - byte, short, char, int). If/else handles the rest. For instance, it is more aesthetically pleasing to say:
etc. than
for a large number of cases. But you can't switch on Strings, or function values, or complex conditions, so if you need to do any of that then you're stuck with if/else. |
|||||||||||
|
|
There are two factors for me: Readability and whether you want to decide something using ranges of values or conditions (in switch statements you can only use a single integer or enumerated value). |
|||
|
|
|
first of all, the switch statement has to be useable. If the switch is based on the value of a variable, then it can be used. If it is based on a complex AND/OR/NOT boolean expression that varies for each condition, then you can't use it at all. That being said, if it is applicable, and there are at least 2 cases, then I use the switch. It is more easily extendible, easier to read and check. |
|||
|
|
|
Personnally, i use to find both constructs a little too procedural. Although it may considered as OO extermism, I use to use a Map containing instances of an internal interface for each cases of the if. It allows better code isolation, i think. However, to trully reply your question, I only use switchs when I have cases that really overlap (the, I don't use break statements). Unfortunatly, it's really not a maintainable code block. |
|||
|
|
|
Switch and enums. If the enum value you are testing can legitimately be The explanation: enums are syntactic sugar introduced in 1.5. Switch statement still works with good-ole ints, but the values the it uses are ordinals assigned to enum. In order to get the ordinal, the enum value MUST be non-null.
|
|||
|
|
|
Maybe a bit offtopic, but if I answered just the question in the title, then I would say that you shouldn't use switch in all situations where cases represent states of some object. State pattern is much prettier solution in those cases. |
|||
|
|
|
I'd suggest the simple rule: Always use a In most cases Java VMs actually support two different sorts of switch, the tableswitch and the lookupswitch instruction. The tableswitch gets generated by the compiler if all |
|||
|
|
|
I've always found that the java switch statement is not as powerful as I need. In his last release lambdaj implements it with a smart use of closure and Hamcrest matcher. For example the lambdaj Switcher allows to implement a strategy pattern. Supposing you have to switch between three sorting algorithm based on some characteristic of the list to be sorted. In particular let's assume we have an algorithm specialized for Strings:
another one that works well with small lists having no more than 100 items:
and more general purpose one:
Given these 3 sorting methods it is possible to create a strategy that chooses the most suitable of them in the following declarative way:
and sort a list using the best available algorithm by invoking the Switcher:
|
|||
|
|
The answer depends on what exactly you are doing as well as the distribution of the choices. If one condition is dominant then the if/then is appropriate.
If the conditions are evenly distributed the optimization in the compiler will provide a performance advantage. This performance difference becomes more pronounced as the number of possible choices increases.
That said, if performance is NOT important go with which ever you approach you prefer as most readable (maintainable and easiest to write). If on the other hand, if your code is in a hotspot where the performance IS important you should go with the switch. For "extremely large" conditions, Mario's example of the lambdaj switcher is really cool and with care on the initialization will result in very high performance. It is very similar coding to what the optimizer is generating. I would define "extremely large" as when the number of options is large or complex enough to make it worth type all that in, and worth the support confusion to when a follow on developer is trying to go through the code. (Comment your code with why you have all that!). |
|||
|
|
|
As with other languages such as C or C++, switch statements are useful when you want to compare a given variable with a list of possible values and perform an action depending on these values. It is terser than if else statements. |
|||
|
|
|
Switch has two relevant disadvantages:
Often switch is a sign for poor OO design, because you'd better use polymorphism. The only possible advantage of switch is, that it is more readable. But is
more readable than this:
I'd say: no! And you wouldn't have the disadvantages of switch. My suggestion: Try to avoid switch. |
|||||||
|