No, you can’t .
Read moreCan switch-case be used for all data types?
A switch works with the byte , short , char , and int primitive data types . It also works with enumerated types (discussed in Enum Types), the String class, and a few special classes that wrap certain primitive types: Character , Byte , Short , and Integer (discussed in Numbers and Strings).
Read moreDoes switch Use equal?
The switch statement compares the String object in its expression with the expressions associated with each case label as if it were using the String. equals method ; consequently, the comparison of String objects in switch statements is case sensitive.
Read moreHow do you use a string in a switch case?
String in Switch Statement Example 1
Read moreDo switch cases work with strings?
It is recommended to use String values in a switch statement if the data you are dealing with is also Strings . The expression in the switch cases must not be null else, a NullPointerException is thrown (Run-time). Comparison of Strings in switch statement is case sensitive.5 Tem 2019
Read moreDoes switch case work with Strings in C?
No you can’t . The case labels of a switch need to be compile time evaluable constant expressions with an integral type.
Read more