While using Java's switch case, it excepts only char and int, but I want to provide string cases. How to make this possible?
|
|
|
You cannot have strings in a switch-case (yet). It's on its way in Java 7. The current types that it accepts include From the Java Language Specification:
|
|||
|
|
|
As other replies have stated, Java (currently) does not support switching on String values. There are three commonly used approaches for achieving the same effect:
|
|||||||||||||
|
What can I switch on?As of Java 6, you can only switch on the following types:
So what can I do?Depending on your use case, you may be able to use
However,
See alsoRelated questions |
|||
|
|
|
|
|||
|
I you're really desperate you could switch on the String's digest. If you're into that sort of thing that is.
|
|||
|
|
|
Let me put my dogmatic hat on (and you're coding in Java so I'm assuming you care about OOP) Rather than asking: how do I do the wrong thing? instead ask: what is the right thing to do? In this case: http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html and for some discussion: http://www.c2.com/cgi/wiki?ReplaceConditionalWithPolymorphism |
|||
|
|
