编写字符串类型的switch语句可以通过以下步骤实现:
以下是一个示例代码:
String str = "example";
switch (str) {
case "example":
System.out.println("This is an example.");
break;
case "test":
System.out.println("This is a test.");
break;
default:
System.out.println("No match found.");
break;
}
在上述示例中,如果字符串变量str
的值为"example",则输出"This is an example.";如果值为"test",则输出"This is a test.";如果值不匹配任何case语句,则输出"No match found."。
注意:在使用字符串类型的switch语句时,需要确保每个case语句中的值是唯一的,以避免逻辑错误。
领取专属 10元无门槛券
手把手带您无忧上云