vote up 12 vote down star
4

Simple question -- why can't I switch on a String in Java, and as far as anyone knows, is this functionality going to be put into a later Java version?

EDIT: If someone can point me to an article, or themselves explain why I can't do this, as in, the technical way Java's switch statement works, it would be most appreciated.

flag

link to a hack version of switching on a string blog.bpsite.net/item/71/… – _ande_turner_ Jun 30 at 14:15

8 Answers

vote up 20 vote down check

No. While this feature is often requested, it's unlikely to be added to a future version of Java. Check out Java's bug database. It doesn't give a reason, but I don't think the stance has changed much in the last thirteen years. You can also follow more recent discussion of this RFE.


Update: Switch statements with String cases have been suggested again as an addition for Java 7, and made the initial cut in "Project Coin".


For more technical depth, you can refer to the JVM Specification, where the compilation of switch statements is described. In a nutshell, there are two different JVM instructions that can be used for a switch, depending on the sparsity of the constants used by the cases. Both depend on using integer constants for each case to execute efficiently.

If the constants are dense, they are used as an index (after subtracting the lowest value) into a table of instruction pointers—the tableswitch instruction.

If the constants are sparse, a binary search for the correct case is performed—the lookupswitch instruction.

Both instructions require the integer constants assigned to each case to be sorted at compile time. At runtime, while the O(1) performance of tableswitch generally appears better than the O(log(n)) performance of lookupswitch, it requires some analysis to determine whether the table is dense enough to justify the space–time tradeoff. Bill Venners wrote a great article that covers this in more detail, along with an under-the-hood look at other Java flow control instructions.

Of course, a hash table from Strings or other types to integer constants could be synthesized at compile time, supporting switch on String. Java support for enum does part of this compiler magic for you, providing a static valueOf method on any enum type. For example:

Pill p = Pill.valueOf(str);
switch(p) {
  case RED:  pop();  break;
  case BLUE: push(); break;
}
link|flag
It might be faster to just use If-Else-If instead of a hash for a string based switch. I have found dictionaries to be quite expensive when only storing a few items. – Grauenwolf Dec 5 '08 at 7:17
1  
An if-elseif-elseif-elseif-else might be faster, but I'd take the cleaner code 99 times times out of 100. Strings, being immutable, cache their hash code, so "computing" the hash is fast. One would have to profile code to determine what benefit there is. – sylvarking Dec 5 '08 at 17:06
1  
The reason given against adding switch(String) is that it wouldn't meet the performance guarantees expects from switch() statements. They didn't want to "mislead" developers. Frankly I don't think they should guarantee the performance of switch() to begin with. – Gili Dec 22 '08 at 22:15
Excellent answer. +1 – JesperE Apr 12 at 7:24
vote up 3 vote down

Switches based on integers can be optimized to very efficent code. Switches based on other data type can only be compiled to a series of if() statements.

For that reason C & C++ only allow switches on integer types, since it was pointless with other types.

The designers of C# decided that the style was important, even if there was no advantage.

The designers of Java apparently thought like the designers of C.

link|flag
Switches based on any hashable object may be implemented very efficiently using a hash table – see .NET. So your reason isn't completely correct. – Konrad Rudolph Dec 3 '08 at 18:36
Yeah, and this is the thing I don't understand. Are they afraid hashing objects will, in the long run, become too expensive? – Nalandial Dec 3 '08 at 18:41
@Nalandial: actually, with a little effort on the part of the compiler, it's not expensive at all because when the set of strings is known, it's pretty easy to generate a perfect hash (this isn't done by .NET, though; probably not worth the effort, either). – Konrad Rudolph Dec 3 '08 at 20:53
1  
@Nalandial & @Konrad Rudolph - While hashing a String (due to it's immutable nature) seems like a solution to this problem you have to remember that all non-final Objects can have their hashing functions overridden. This makes it difficult at compile time to ensure consistency in a switch. – martinatime Dec 3 '08 at 22:01
vote up 3 vote down

Java can't switch on objects, only standard data types.

This is a discussion at java.net regarding requests to add the ability to switch on objects in future versions: http://forums.java.net/jive/thread.jspa?threadID=595

Right now the answer is unknown on whether or not it will be added in the future.

link|flag
vote up 12 vote down

If you have a place in your code where you can switch on a String, then it may be better to refactor the String to be an enumeration of the possible values, which you can switch on. Of course, you limit the potential values of Strings you can have to those in the enumeration, which may or may not be desired.

Of course your enumeration could have an entry for 'other', and a fromString(String) method, then you could have

ValueEnum enumval = ValueEnum.fromString(myString);
switch (enumval) {
   case MILK: lap(); break;
   case WATER: sip(); break;
   case BEER: quaff(); break;
   case OTHER: 
   default: dance(); break;
}
link|flag
This technique also lets you decide on issues such a case insensitivity, aliases, etc. Instead of depending on a language designer to come up with the "one size fits all" solution. – Darron Dec 3 '08 at 21:12
Agree with JeeBee, if you are switching on strings probably need an enum . The string usually represents something going to an interface (user or otherwise) that may or not change in the future so better replace it with enums – hhafez Dec 3 '08 at 23:24
vote up 0 vote down

Reminds me of this thread : http://groups.google.com/group/comp.lang.java.programmer/browse_thread/thread/ddee6c336894e00d

link|flag
Ah, Jon Skeet is already there! (in 2001...) – PhiLho Dec 3 '08 at 21:47
vote up 2 vote down

James Curran succinctly says: "Switches based on integers can be optimized to very efficent code. Switches based on other data type can only be compiled to a series of if() statements. For that reason C & C++ only allow switches on integer types, since it was pointless with other types."

My opinion, and it's only that, is that as soon as you start switching on non-primitives you need to start thinking about "equals" versus "==". Firstly comparing two strings can be a fairly lengthy procedure, adding to the performance problems that are mentioned above. Secondly if there is switching on strings there will be demand for switching on strings ignoring case, switching on strings considering/ignoring locale,switching on strings based on regex.... I would approve of a decision that saved a lot of time for the language developers at the cost of a small amount of time for programmers.

link|flag
vote up 1 vote down

Beside the above good arguments, I will add that lot of people today see switch as an obsolete remainder of procedural past of Java (back to C times).

I don't fully share this opinion, I think switch can have its usefulness in some cases, at least because of its speed, and anyway it is better than some series of cascading numerical else if I saw in some code...

But indeed, it is worth looking at the case where you need a switch, and see if it cannot be replaced by something more OO. For example enums in Java 1.5+, perhaps HashTable or some other collection (sometime I regret we don't have (anonymous) functions as first class citizen, as in Lua — which doesn't have switch — or JavaScript) or even polymorphism.

link|flag
vote up 1 vote down

will be added in version 7 of Java (February 2010).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.