publicclassdemo{ publicstaticvoidmain(String[] args){ int x = 40; if( x == 10 ){ System.out.print("Value of X is 10"); }elseif( x == 20 ){ System.out.print("Value of X is 20"); }elseif( x == 30 ){ System.out.print("Value of X is 30"); }else{ System.out.print("条件都不满足,该语句打印"); } } }
输出结果:
1
条件都不满足,该语句打印
switch case 语句
switch case 语句判断一个变量与一系列值中某个值是否相等,每个值称为一个分支。
说明:
switch 语句中的变量类型可以是: byte、short、int 或者 char。从 Java SE 7 开始,switch 支持字符串 String 类型,同时 case 标签必须为字符串常量或字面量。
switch 语句可以拥有多个 case 语句。每个 case 后面跟一个要比较的值和冒号。
case 语句中的值的数据类型必须与变量的数据类型相同,而且只能是常量或者字面常量。
当变量的值与 case 语句的值相等时,那么 case 语句之后的语句开始执行,直到 break 语句出现才会跳出 switch 语句。