当前位置: 代码迷 >> 综合 >> 开始学java(四)普普通通的if…elseif…else和switch语句+switch穿透
  详细解决方案

开始学java(四)普普通通的if…elseif…else和switch语句+switch穿透

热度:29   发布时间:2023-12-02 23:46:34.0

格式:

if(判断条件1){
    执行语句1;
}else if (判断条件2){
    执行语句2}}else if(判断条件N){
    执行语句N;
}else{
    最后的执行语句;
}

执行流程:
1、首先判断关系表达式1看其结果是true还是false
2、如果是true就执行语句体1,其他的都不执行,并且结束
3、如果是false就继续判断后续条件是true还是false一直到最后,如果都为false就去执行else中的语句体。
例子:定义一个分数,判断是什么层次的学生

public class test1{
    public static void main(String[] args){
    int fenshu  = 50;if (fenshu>100||fenshu<0){
    System.out.println("你的分数不对劲");}else if(fenshu>=90&&fenshu>=100){
    System.out.println("优秀");}else if(fenshu>=80&&fenshu<89){
    System.out.println("好");}else if(fenshu>=70&&fenshu <79){
    System.out.println("良");}else if (fenshu >=60&&fenshu <69){
    System.out.println("及格");}else{
    System.out.println("不及格");}}
}

switch语句
格式:

switch(表达式){
    case 常量值1;break;case 常量值2break;……default//如果谁都不满足,就执行这个最后的语句体;break}

执行流程:
1、首先计算出表达式的值
2、其次,和case依次比较,一旦有对应的值,就回执行相应的语句体,在执行过程中,遇到break;就会结束。
3、最后,如果所有的case都和表达式不匹配,就会执行default的语句体部分,然后程序结束。

例子:

public class test1{
    public static void main(String[] args){
    int num = 10;switch (num){
    case 1:System.out.println("星期一");break;case 2:System.out.println("星期二");break;case 3:System.out.println("星期三");break;case 4:System.out.println("星期四");break;case 5:System.out.println("星期五");break;case 6:System.out.println("星期六");break;case 7:System.out.println("星期日");break;default:System.out.println("不是星期数字");break;}}
}

switch语句使用的注意事项
1、多个case后面的数值不可以重复。
2、switch后面小括号中只能是下列数据类型(基本数据类型:byte/short/char/int、引用数据类型:String字符串/enum枚举)
3、switch语句格式可以很灵活:前后顺序可以电陶,而且break语句还可以省略。
“匹配哪一个case就从哪一个位置向下执行,直到遇到了break或者整体结束为止。”
switch穿透例子

public class test1{
    public static void main(String[] args){
    int num = 2;switch(num){
    case 1:System.out.println("你好");break;case 2:System.out.println("我好");//break;case 3:System.out.println("大家好");//break;default:System.out.println("牛逼");break;}}
}
  相关解决方案