3.从零学Java之(流程控制)

Posted javahuhuhu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3.从零学Java之(流程控制)相关的知识,希望对你有一定的参考价值。

1.用户交互Scanner

Scanner对象

  • 之前学的基本语法中并没有实现程序和人的交互,但是Java给我们提供了这样一个工具类,我们可以获取用户的输入

  • java.util.Scanner 是Java 5 的新特性,我们可以通过Scanner类获取用户的输入

  • 基本语法:

 Scanner sc = new Scanner(System.in);
  • 通过 Scanner 类的next() 与 nextLine()方法获取输入的字符串,在读取前我们一般需要使用hasNext() 与 hasNextLine() 判断是否还有输入的数据

 

next():
  • 1.一定要读取到有效字符后才可以结束输入

  • 2.对输入有效字符之前遇到的空白,next() 方法会自动将其去掉

  • 3.只有输入有效字符后才将后面输入的空白作为分隔符或结束符

  • 4.next() 不能得到带有空格的字符串

 public static void main(String[] args) {
         //创建一个扫描器对象,用于接收键盘数据
         Scanner scanner = new Scanner(System.in);
         System.out.println("使用next方式接收:");
         //判断用户有没有输入字符串
         if (scanner.hasNext()) {
             //使用next方式接收用户输入
             String str = scanner.next();//程序会等待用户输入完毕
             System.out.println("输出的内容为:" + str);
         }
         //凡是属于IO流的类,如果不关闭会一直占用资源,要养成好习惯用完就关掉
         scanner.close();
     }
nextLine():
  • 1.以Enter为结束符,也就是说 nextLine() 方法返回的是输入回车之前的所有字符

  • 2.可以获得带有空格的字符串

 public static void main(String[] args) {
         //从键盘接收数据
         Scanner scanner = new Scanner(System.in);
         System.out.println("使用nextLine方式接收:");
         //判断是否还有输入
         if (scanner.hasNextLine()) {
             String str = scanner.nextLine();
             System.out.println("输出的内容为:" + str);
         }
         scanner.close();
     }

不用判断:

 public static void main(String[] args) {
         //从键盘接收数据
         Scanner scanner = new Scanner(System.in);
         System.out.println("请输入数据:");
         String str = scanner.nextLine();
         System.out.println("输出的内容为:" + str);
         scanner.close();
     }

2.顺序结构

  • Java的基本结构就是顺序结构,除非特别指明,否则就按照顺序一句一句执行

  • 顺序结构是最简单的算法结构

  • 语句与语句之间,框与框之间是按从上到下的顺序进行的,它是由若干个依次执行的处理步骤组成的,它是任何一个算法都离不开的一种基本算法结构

3.选择结构

if:

  • if单选择结构

 public static void main(String[] args) {
         Scanner scanner = new Scanner(System.in);
         System.out.println("请输入内容:");
         String s = scanner.nextLine();
         //equals:判断字符串是否相等
         if (s.equals("Hello")) {
             System.out.println(s);
         }
         System.out.println("End");
         scanner.close();
     }
  • if双选择结构

 public static void main(String[] args) {
         Scanner scanner = new Scanner(System.in);
         System.out.println("请输入成绩:");
         int score = scanner.nextInt();
         if (score > 60) {
             System.out.println("及格");
         } else {
             System.out.println("不及格");
         }
         scanner.close();
     }
  • if多选择结构

 public static void main(String[] args) {
         Scanner scanner = new Scanner(System.in);
         /*
         if 语句至多有 1 个 else 语句,else 语句在所有的else if 语句之后
         if 语句可以有若干个 else if 语句,它们必须要在 else 语句之前
         一旦其中一个 else if 语句检测为 true ,其它的 else if 以及 else 语句都将跳过执行
          */
         System.out.println("请输入成绩:");
         int score = scanner.nextInt();
         if (score == 100) {
             System.out.println("恭喜满分");
         } else if (score < 100 && score >= 90) {
             System.out.println("A级");
         } else if (score < 90 && score >= 80) {
             System.out.println("B级");
         } else if (score < 80 && score >= 70) {
             System.out.println("C级");
         } else if (score < 70 && score >= 60) {
             System.out.println("D级");
         } else if (score < 60 && score >= 0) {
             System.out.println("不及格");
         } else {
             System.out.println("成绩不合法!");
         }
         scanner.close();
     }
  • 嵌套的if结构

switch:

  • switch多选择结构

    • switch 语句中的变量类型可以是:

      • byte、short、int 或者 char

      • 从 Java SE 7 开始

      • switch 支持字符串 String 类型

      • 同时 case 标签必须为字符串常量或字面量

char 类型:

 public static void main(String[] args) {
         //case 穿透(没有写break,匹配成功的话会一直往下匹配)
         //switch 匹配一个具体的值
         char grade = ‘C‘;
         switch (grade) {
             case ‘A‘:
                 System.out.println("优秀");
                 break; //可选
             case ‘B‘:
                 System.out.println("良好");
                 break;
             case ‘C‘:
                 System.out.println("及格");
                 break;
             case ‘D‘:
                 System.out.println("再接再厉");
                 break;
             case ‘E‘:
                 System.out.println("挂科");
                 break;
             default:
                 System.out.println("未知等级");
                 break;
         }
     }

String 类型:

 public static void main(String[] args) {
         String name = "小胡";
         //JDK7 的新特性,表达式结果可以是字符串
         //字符的本质还是数字
         //反编译:  java---class(字节码文件)---反编译(IDEA)
         switch (name) {
             case "小胡":
                 System.out.println("小胡");
                 break; //可选
             case "同学":
                 System.out.println("同学");
                 break;
             default:
                 System.out.println("弄啥咧!");
                 break;
         }
     }

4.循环结构

  • while 循环

  • do...while 循环

  • for 循环

  • 在 Java5 中引入了一种主要用于数组的增强 for 循环

while循环:

  • 只要布尔表达式为 true ,循环就会一直执行下去

  • 我们大多数情况是会让循环停止下来的,我们需要一个让表达式失效的方式来结束循环

  • 少部分情况需要循环一直执行,比如 服务器的请求响应监听等

  • 循环条件一直为true就会造成无限循环【死循环】,我们正常的业务编程中应该尽量避免死循环。会影响程序性能或者造成程序卡死崩溃

 public static void main(String[] args) {
         //计算1+2+3+...+100=?
         int i = 1;
         int sum = 0;
         while (i <= 100){
             sum += i;
             i++;
         }
         System.out.println(sum);
     }

死循环:

 public static void main(String[] args) {
         //死循环
         while (true){
             //等待客户端连接
             //定时检查
             //....
         }
     }

do...while循环:

  • 对于while语句而言,如果不满足条件,则不能进入循环。但有时候我们需要即使不满足条件,也至少执行一次

  • do...while 循环和 while 循环相似,不同的是,do...while 循环会至少执行一次

 public static void main(String[] args) {
         int a = 0;
         while (a < 0){
             System.out.println(a);
             a++;
         }
         System.out.println("=================");
         do {
             System.out.println(a);//0
             a++;
         }while (a < 0);
     }
  • While 和 do...While的区别:

    • while先判断后执行。do...while 是先执行一次后判断

    • Do...while 总是保证循环体会被执行至少一次!这是主要差别

 

For循环:

  • 虽然所有循环结构都可以用 while 或者 do...while 表示,但 Java 提供了另外一种一句——for循环,使一些循环结构变得更加简单

  • for 循环语句是支持迭代的一种通用结构,是最有效、最灵活的循环结构

  • for 循环执行的次数是在执行前就确定的

 public static void main(String[] args) {
         int a = 1;//初始化值
         while (a <= 100) {//条件判断
             System.out.println(a);//循环体
             a += 2; //迭代
         }
         System.out.println("while循环结束!");
         //    初始化值;条件判断;迭代
         for (int i = 1; i <= 100; i++) {
             System.out.println(i);//循环体
         }
         System.out.println("for循环结束!");
         /*
         关于 for 循环有以下几点说明:
         最先执行初始化步骤。可以声明一种类型,但可初始化一个或多个循环控制变量,也可以是空语句
         然后,检测布尔表达式的值。如果为true,循环体被执行。如果为false,循环终止,开始执行循环体后面的语句
         执行一次循环后,更新循环控制变量(迭代因子控制循环变量的增减)
         再次检测布尔表达式,循环执行上面的过程
          */
         //死循环
         for (; ; ) {
         }
     }
  • 练习:打印九九乘法表

 public static void main(String[] args) {
         //打印九九乘法表
         for (int i = 1; i <= 9; i++) {
             for (int j = 1; j <= i; j++) {
                 System.out.print(j + "*" + i + "=" + i * j + "	");
             }
             System.out.println();
         }
     }

增强for循环:

  • Java 5 引入了一种主要用于数组或集合的增强 for 循环

  • Java 增强for 循环语法格式如下:

 for(声明语句 : 表达式){
     //代码句子
 }
  • 声明语句:声明新的局部变量,该变量的类型必须和数组元素的类型相匹配。其作用域在循环语句块,其值与此时数组元素的值相等

  • 表达式:表达式是要访问的数组名,或者是返回值为数组的方法

 public static void main(String[] args) {
         int[] arr = {1, 2, 3, 4, 5};
         //遍历数组的元素
         for (int x : arr){
             System.out.println(x);
         }
     }

5.break & continue

  • break 在任何循环语句的主体部分,均可用 break 控制循环的流程。break 用于强行退出循环,不执行循环中剩余的语句(break 语句也在switch 语句中使用)

  • continue 语句用在循环与具体中,用于终止某次循环过程,即跳过循环体中尚未执行的语句,接着进行下一次是否执行循环的判定

break:

 public static void main(String[] args) {
         int i = 0;
         while (i < 100) {
             i++;
             System.out.println(i);
             if (i == 30) {
                 break;
             }
         }
     }

continue:

 public static void main(String[] args) {
         int i = 0;
         while (i < 100) {
             i++;
             if (i % 10 == 0) {
                 System.out.println();
                 continue;
             }
             System.out.print(i);
         }
     }

6.练习

 public static void main(String[] args) {
         //打印三角形 5行
         for (int i = 1; i <= 5; i++) {
             for (int j = 5; j >= i; j--) {
                 System.out.print(" ");
             }
             for (int j = 1; j <= i; j++) {
                 System.out.print("*");
             }
             for (int j = 1; j < i; j++) {
                 System.out.print("*");
             }
             System.out.println();
         }
     }

 

 

以上是关于3.从零学Java之(流程控制)的主要内容,如果未能解决你的问题,请参考以下文章

7.从零学Java之(面向对象(下))

从零学Java之搭建开发环境

从零学Java(30)之递归

从零学Java(31)之构造方法

从零学Java(29)之方法重载

从零学Java(30)之递归