switch语句
Posted xzwx668
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了switch语句相关的知识,希望对你有一定的参考价值。
/*
1多个case后面数值不可以重复
2switch后面的小括号只能是
基本数据类型byte/short/int/char
引用数据类型字符串 enum枚举
switch语句很灵活前后顺序可以颠倒 而且break可以省略
匹配到哪一个case就从哪一个case执行知道遇见break
*/
public class switch{
public static void main(String[] args){
int i=1;
switch(i){
case 1:
System.out.println("你好");
break;
case 2:
System.out.println("我好");
break;
case 3:
System.out.println("大家好");
break;
default:
System.out.println("才是真的好");
break;
}
}
}
以上是关于switch语句的主要内容,如果未能解决你的问题,请参考以下文章