int main()
{
switch(std::string("raj")) //Compilation error - switch expression of type illegal
{
case"sda":
}
}
|
1
|
|
|||
|
|
|
|
The reason why has to do with the type system. C/C++ doesn't really support strings as a type. It does support the idea of a constant char array but it doesn't really fully understand the notion of a string. In order to generate the code for a switch statement the compiler must understand what it means for two values to be equal. For items like ints and enums, this is a trivial bit comparison. But how should the compiler compare 2 string values? Case sensitive, insensitive, culture aware, etc ... Without a full awareness of a string this cannot be accurately answered. Additionally, C/C++ switch statements are typically generated as branch tables. It's not nearly as easy to generate a branch table for a string style switch. |
||||||
|
|
|
The problem is that for reasons of optimization the switch statement in C++ does not work on anything but primitive types, and you can only compare them with compile time constants. Presumably the reason for the restriction is that the compiler is able to apply some form of optimization compiling the code down to one cmp instruction and a goto where the address is computed based on the value of the argument at runtime. Since branching and and loops don't play nicely with modern CPUs, this can be an important optimization. To go around this, I am afraid you will have to resort to if statements. |
||
|
|
|
You can only use switch on primitive such as int, char and enum. The easiest solution to do it like you want to, is to use an enum.
|
||||
|
|
|
I think the reason is that in C strings are not primitive types, as tomjen said, think in a string as a char array, so you can not do things like:
|
||||
|
|
|
In C++ and C switches only work on integer types. Use an if else ladder instead. C++ could obviously have implemented some sort of swich statement for strings - I guess nobody thought it worthwhile, and I agree with them. |
||||||
|
|
|
As mentioned previously, compilers like to build lookup tables that optimize I will offer an alternative that you might want to consider, I've used it in the past to good effect. Instead of switching over the string itself, switch over the result of a hash function that uses the string as input. Your code will be almost as clear as switching over the string if you are using a predetermined set of strings:
There are a bunch of obvious optimizations that pretty much follow what the C compiler would do with a switch statement... funny how that happens. |
||
|
|
|
|
In C++ you can only use a switch statement on int and char |
||||||
|
|
|
You can't use string in switch case.Only int & char are allowed. Instead you can try enum for representing the string and use it in the switch case block like
Use it int the swich case statement. |
|||
|
|
|
|
In c++ strings are not first class citizens. The string operations are done through standard library. I think, that is the reason. Also, C++ uses branch table optimization to optimize the switch case statements. Have a look at the link. |
|||
|
|
