Beginning with JDK 7, we can use a string literal/constant to control a switch statement, which is not possible in C/C++. Using a string-based switch is an improvement over using the equivalent sequence of if/else statements.
Important Points:
- Expensive operation: Switching on strings can be more expensive in term of execution than switching on primitive data types. Therefore, it is best to switch on strings only in cases in which the controlling data is already in string form.
- String should not be NULL: Ensure that the expression in any switch statement is not null while working with strings to prevent a NullPointerException from being thrown at run-time.
- Case Sensitive Comparison: 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.
- Better than if-else: The Java compiler generates generally more efficient bytecode from switch statements that use String objects than from chained if-then-else statements.
// Java program to demonstrate use of a // string to control a switch statement. public class Test { public static void main(String[] args) { String str = "two"; switch(str) { case "one": System.out.println("one"); break; case "two": System.out.println("two"); break; case "three": System.out.println("three"); break; default: System.out.println("no match"); } } } |
chevron_right
filter_none
Output:
two
This article is contributed by Gaurav Miglani. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Menu-Driven program using Switch-case in C
- Permute a string by changing case
- Toggle case of a string using Bitwise Operators
- Convert characters of a string to opposite case
- Switch Statement in Java
- Lower case to upper case - An interesting fact
- Case conversion (Lower to Upper and Vice Versa) of a string using BitWise operators in C/C++
- Decision Making in Java (if, if-else, switch, break, continue, jump)
- Convert a List of String to a comma separated String in Java
- Switch Statement in C/C++
- Convert an ArrayList of String to a String array in Java
- Convert a Set of String to a comma separated String in Java
- Nested switch statement in C++
- Convert Set of String to Array of String in Java
- String Literal Vs String Object in Java
Improved By : arjun_dandagi



