Java 编程/关键字/case
外观
case
是一个 Java 关键字。
这是 switch
语句的一部分,用于查找传递给 switch 语句的值是否与后面跟有 case 的值匹配。
例如
int i = 3;
switch(i) {
case 1:
System.out.println("The number is 1.");
break;
case 2:
System.out.println("The number is 2.");
break;
case 3:
System.out.println("The number is 3."); // this line will print
break;
case 4:
System.out.println("The number is 4.");
break;
case 5:
System.out.println("The number is 5.");
break;
default:
System.out.println("The number is not 1, 2, 3, 4, or 5.");
}
|