简介: 流程控制语句是用来控制程序中各语句执行顺序的语句,可以把语句组合成能完成一定功能的小逻辑模块。


顺序结构


 程序从上到写逐行地执行,中间没有任何判断和跳转

分支结构


 根据条件,选择性地执行某段代码


 有if···else和switch-case两种分支语句

循环结构


 根据循环条件,重复性的执行某段代码


 有while、do···while、for三种循环结构


 注:JDK1.5提供了foreach循环,方便的遍历集合、数组元素


分支结构

if-else结构

  1. 格式一

if(条件表达式){
   执行代码块;
}

  1. 格式二

if(条件表达式){
   执行代码块1;
}else{
   执行代码块2;
}

  1. 格式三

if(条件表达式1){
   执行代码块1;
}else if(条件表达式2){
   执行代码块2;
}
······
else{
   执行代码块n;
}

说明:
1.else结构是可选的
2.针对于条件表达式:
 >如果多个条件表达式之间是“互斥”关系(或没有交集的关系),哪个判断和执行语句声明在上面还是下面,无所谓
 >如果多个条件表达式之间有交集的关系,需要根据实际情况,考虑清楚应该将哪个结构声明在上面
 >如果多个条件表达式之间有包含的关系,通常情况下,需要将范围小的声明在范围大的上面。否则,范围小的就没机会执行了。
3.if-else结构式可以相互嵌套的
4.如果if-else结果中的执行语句只有一行时,对应的一对()可以省略的。但是,不建议大家省略。

//三种格式的例子
public class IfTest {
    public static void main(String[] args) {
        //格式一
        int heartBeats = 79;
        if (heartBeats < 60 || heartBeats > 100) {
            System.out.println("需要做进一步检查");
        }
        System.out.println("检查结束");
        //格式二
        int age = 23;
        if (age < 18) {
            System.out.println("你还可以看动画片");
        } else {
            System.out.println("你可以看爱情片");
        }
        //格式三
        if (age < 0) {
            System.out.println("您输入的数据错误");
        } else if (age < 18) {
            System.out.println("青少年时期");
        } else if (age < 35) {
            System.out.println("青壮年时期");
        } else if (age < 60) {
            System.out.println("中年时期");
        } else if (age < 120) {
            System.out.println("老年时期");
        } else {
            System.out.println("你是要成仙啊~~");
        }
    }
}

结果:
检查结束
你可以看爱情片
青壮年时期

switch-case结构

格式

if(条件表达式){
 case 常量1:
   语句1;
   //break;
 case 常量2:
   语句2;
   //break;
··· ···
 case 常量n:
   语句n;
   //break;
 default:
   语句;
   //break;
}

说明:
 ① 根据switch表达式中的值,一次匹配各个case中的常量,一旦匹配成功,则进入相应case结构中,调用其执行语句,当调用完执行语句以后,则仍然继续向下执行其他case结构中的执行语句,知道遇到break关键字或此switch-case结构末尾结束为止。
 ② break,可以使用在switch-case结构中,表示一旦执行到此关键字,就跳出switch-case结构。
 ③ switch结构中的表达式,只能是如下的6中数据类型之一:byte、short、char、int、枚举类型、String类型。
 ④ case之后只能声明常量。不能声明范围。
 ⑤ break关键字是可选的。
 ⑥ default相当于if-else结构中的else。 default结构式可选的,而且位置是灵活的。
 ⑦ 如果switch-case结构中的多个case的执行语句相同,则可以考虑进行合并。

public class SwitchTwst {
    public static void main(String[] args) {
        int number = 2;
        switch (number) {
            case 0:
                System.out.println("zero");
            case 1:
                System.out.println("one");
            case 2:
                System.out.println("two");
                break;
            default:
                System.out.println("none");
        }
        int score = 78;
        switch (score / 10) {
            case 0:
            case 1:
            case 2:
            case 3:
            case 4:
            case 5:
                System.out.println("不及格");
                break;
            case 6:
            case 7:
            case 8:
            case 9:
            case 10:
                System.out.println("及格");
                break;
        }
    }
}

结果:
two
及格

说明:
 1.凡是可以使用switch-case的结构,都可以转换为if-else。反之,不成立
 2.写分支结构时,当发现既可以使用switch-case(同时switch中表达式的取值情况不太多),又可以使用if-else时,优先选择使用switch-case。原因:switch-case执行效率稍高。

循环结构

循环结构的4个要素
① 初始化条件
② 循环条件
③ 循环体
④ 循环条件

for循环

格式

for(①;②;④){
 ③
}
执行过程:① --> ② --> ③ --> ④ --> ② --> ③ --> ④ --> … --> ②

public class ForTest {
    public static void main(String[] args) {
        //遍历100以内的偶数,输出所有偶数的和,输出偶数的个数
        int sum = 0;
        int count = 0;
        for (int i = 1; i <= 100; i++) {
            if (i % 2 == 0) {
                sum += i;
                count++;
            }
        }
        System.out.println("总和为:" + sum);
        System.out.println("个数为:" + count);

        int num = 1;
        for (System.out.print('a'); num <= 3; System.out.print('c'), num++) {
            System.out.print('b');
        }
    }
}

结果:
2550
50
abcbcbc

while循环

格式


while(②){
 ③;
 ④;
}
执行过程:① --> ② --> ③ --> ④ --> ② --> ③ --> ④ --> … --> ②
说明:
 1.写while循环千万小心不要丢了迭代条件。一旦丢了,就可能导致死循环。
 2.我们写程序,要避免出现死循环。
 3.for循环和while循环时可以相互转换的。
  区别:for循环和while循环的初始化条件部分的作用范围不同。

public class WhileTest {
    public static void main(String[] args) {
        int i = 1;
        while (i <= 100) {
            if (i % 2 == 0) {
                System.out.println(i);
            }
            i++;
        }
        System.out.println(i);
    }
}

结果:
100以内所有的偶数
101

do-while循环

格式


do{
 ③;
 ④;
}while(②);
执行过程:① --> ③ --> ④ --> ② --> ③ --> ④ --> ② --> … --> ②
说明:
 1.do-while循环至少会执行一次循环体。
 2.开发中,使用for和while更多一些。较少使用do-while。

public class DoWhileTest {
    public static void main(String[] args) {
        //遍历100以内的偶数
        int num = 1;
        do {
            if (num % 2 == 0) {
                System.out.println(num);
            }
            num++;
        } while (num <= 100);
        //体验do-while循环至少会执行一次循环体
        int number1 = 10;
        while (number1 > 10) {
            System.out.println("hello:while");
            number1--;
        }
        int number2 = 10;
        do {
            System.out.println("hello:do-while");//do-while循环至少会执行一次循环体
            number2--;
        } while (number2 > 10);
    }
}

结果:
100以内所有的偶数
hello:do-while

说明:
 1.不在循环条件部分限制次数的结构:for(;;)或while(true)
 2.结束循环有几种方式
    方式一:循环条件部分返回false
    方式二:在循环体中,执行break

嵌套循环

嵌套循环:将一个循环结构A声明在另一个循环结构B的循环体中,就构成了嵌套循环
外层循环:循环结构B
内层循环:循环结构A
外层循环控制行数,内层循环控制列数

说明:
① 内层循环结构遍历一遍,只相当于外层循环体执行了一次
② 假设外层循环需要执行m次,内层循环需要执行n次,此时内层循环的循环体一共执行了m*n次

public class QianTaoTest {
    public static void main(String[] args) {
        //******
        for (int i = 1; i <= 6; i++) {
            System.out.print('*');
        }
        System.out.println();
        System.out.println();
        /*
         ******
         ******
         ******
         ******
         */
        for (int i = 1; i <= 4; i++) {
            for (int j = 1; j <= 6; j++) {
                System.out.print('*');
            }
            System.out.println();
        }
        System.out.println();
        /*
         *
         **
         ***
         ****
         *****
         */
        for (int i = 1; i <= 5; i++) {
            for (int j = 1; j <= i; j++) {
                System.out.print('*');
            }
            System.out.println();
        }
        System.out.println();
    }
}

特殊关键字的使用:break、continue

使用范围:

关键字

使用范围

循环中使用的作用

break

switch-case、循环结构中

结束当前循环

continue

循环结构中

结束当次循环

public class BreakContinueTest {
    public static void main(String[] args) {
        for (int i = 1; i <= 10; i++) {
            if (i % 4 == 0) {
                //break;//123
                continue;//123567910
            }
            System.out.print(i);
        }
        System.out.println();
        //
        label:for (int i = 1; i <= 4; i++) {
            for (int j = 1; j <= 10; j++) {
                if (j % 4 == 0) {
                    break;//四次  123 默认跳出包裹此关键字最近的一次循环
                    ///continue;//四次  123567910
                    //break label;//结束执行标识的一层循环结构 一次 123
                    //continue label;//结束执行标识的一层循环结构当次循环 一次 123123123123
                }
                System.out.print(j);
            }
            System.out.println();
        }
    }
}

return

return:并非专门用于结束循环的,他的功能是结束一个方法。当一个方法执行到一个reutrn语句时,这个方法将被结束。
与break和continue不同的是,return直接结束整个方法,不管这个return处在多少层循环之内。

例子:
从键盘上输入2022年的“month”和"day",要求通过程序输出输入的日期为2022年的第几天

import java.util.Scanner;

public class except {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        System.out.println("请输入2022年的month:");
        int month = scan.nextInt();
        System.out.println("请输入2022年的day:");
        int day = scan.nextInt();
        //定义一个变量来保存总天数
        int sumDays = 0;
        //方式一:冗余
       /*
       if (month == 1) {
            sumDays = day;
        } else if (month == 2) {
            sumDays = 31 + day;
        } else if (month == 3) {
            sumDays = 31 + 28 + day;
        } else if (month == 4) {
            sumDays = 31 + 28 + 31 day;
        }
        //...
        else {//month == 12
            //sumDays = ... + day;
        }
        */
        //方式二:冗余
        /*
        switch (month) {
            case 1:
                sumDays = day;
                break;
            case 2:
                sumDays = 31 + day;
                break;
            case 3:
                sumDays = 31 + 28 + day;
                break;
            case 4:
                sumDays = 31 + 28 + 31 day;
                break;
            //...
        }
        */
        //方式三:
        switch (month) {
            case 12:
                sumDays += 31;
            case 11:
                sumDays += 31;
            case 10:
                sumDays += 30;
            case 9:
                sumDays += 31;
            case 8:
                sumDays += 31;
            case 7:
                sumDays += 30;
            case 6:
                sumDays += 31;
            case 5:
                sumDays += 30;
            case 4:
                sumDays += 31;
            case 3:
                sumDays += 28;
            case 2:
                sumDays += 31;
            case 1:
                sumDays += day;
        }
        System.out.println("2022年" + month + "月" + day + "日是当年的第" + sumDays + "天");
    }
}