Is there any alternative way to implement Switch Case in java other than if else which is not looking good. A set of values will be there in combo, according to selection corresponding method has to be executed.
feedback
|
|
Presumably you're struggling with the requirement of case's being constant. Typically this is a code-smell, but there are things you can do. You might want to raise and link to another question that details why you're trying to switch.
In the example above, you might want to map to 'handlers', something like
which then makes this all turn into a lookup.
Again, it's a bit of a smell, so please post a question which illustrates the reasoning. | |||||||||||||||
feedback
|
|
If you have plenty of switch/case statements around your code and they are driving you crazy. You could opt for the Refactoring: Replace conditional with polymorphism. Let's say you have a piece of software that is used to save information to different devices: 4 persistence operations are defined: fetch, save, delete, update, which could be implemented by N number of persistence mechanism ( flat files, network, RDBMS, XML, etc ) . Your code have to support them all so in 4 different places you have the this: BEFORE
Same for save/delete/update
And so on....
Using switch/case statement becomes problematic:
So the refactoring here would be to add an interface or abstract type and have the different types implement that interface and delegate the responsibility to that object. So you would have something like this: AFTER
And different implementations
And the other types would implement according to their logic. Network would deal with sockets, and streams, DB would deal with JDBC, ResultSets etc. XML with node etc.etc.
And finally you just have to delegate the invocations. Later:
So, you just have to create the correct instance for the persistence manager according to the type only once. Then all the invocations are resolved by polymorphism. That's one of the key features of Object Oriented Technology. If you decide you need another persistence manager, you just create the new implementation and assigned to the class.
| ||||
|
feedback
|
|
Refactoring your code to use polymorphism could get rid of the need for a switch statement. However, there are some legitimate uses for switch so it depends on your situation. | |||||||
feedback
|
|
or one could imagine a kind of dynamic switch case:
| |||
|
feedback
|
|
I guess "Clean Code" has a nice chapter according switch/case vs. if/else. Besides: I think it makes sense to decide whether you can reduce "noise" and make the code cleaner by using switch case, polymorphism or even a good ol' if/else. The number of cases plays a major role here, I guess. | |||
|
feedback
|
|
What do you want to do? Why is not Switch-Case good enough? The fast answer is: use if-else | |||
|
feedback
|
? But I wouldn't say it is better... | |||
|
feedback
|
|
How about an | |||||
|
feedback
|
|
You could always replace a switch with | |||
|
feedback
|