Java流程控制
2021/10/25 1:40:28
本文主要是介绍Java流程控制,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一.Scanner对象
- 之前我们学的基本语法中我们并没有实现程序和人的交互,但是Java给我们提供了这样一个工具类,我们可以获取用户的输入。java.util.Scanner是 Java5 的新特性,我们可以通过 Scanner 类来获取用户的输入。
- 基本语法
- Scanner s = new Scanner(System.in);
- 通过 Scanner 类的 next() 与 nextLine()方法获取输入的字符串,在读取前我们一般需要 使用hasNext() 与 hasNextLine() 判断是否还有输入的数据。
- next():
- 1、一定要读取到有效字符后才可以结束输入。
- 2、对输入有效字符之前遇到的空白,next()方法会自动将其去掉。
- 3、只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
- 4、next()不能得到带有空格的字符串。
- nextLine():
- 1、以Enter为结束符,也就是说 nextLine() 方法返回的是输入回车之前的所有字符。
- 2、可以获得空白。
import java.util.Scanner; public class Demo1 { 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(); } }
import java.util.Scanner; public class Demo2 { public static void main(String[] args) { //创建一个扫描器对象,用于接收键盘数据 Scanner scanner = new Scanner(System.in); System.out.println("使用nextLine方式接收:"); //判断用户有没有输入字符串 if (scanner.hasNextLine()) { //使用nextLine方式接收 String str = scanner.nextLine(); System.out.println("输入的的内容为:" + str); } //凡是属于IO流的类如果不关闭会一直占用资源,要养成好习惯用完就关掉 scanner.close(); } }
import java.util.Scanner; public class Demo4 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); //从键盘接收数据 int i = 0; float f = 0.0f; System.out.println("请输入整数:"); //如果...那么 if (scanner.hasNextInt()) { i = scanner.nextInt(); System.out.println("整数数据:" + i); }else { System.out.println("输入的不是整数数据!"); } if (scanner.hasNextFloat()) { f = scanner.nextFloat(); System.out.println("小数数据:" + f); }else { System.out.println("输入的不是整数数据!"); } scanner.close(); } }
二.顺序结构
- JAVA的基本结构就是顺序结构,除非特别指明,否则就按顺序一句一句执行。
- 顺序结构是最简单的算法结构。
- 语句与语句之间,框与框之间是按从上到下的顺序进行的,它是由若干个依次执行的处理步骤组成的,它是任何一种算法都离不开的一种基本算法结构。
三.选择结构
- if单选择结构
- if双选择结构
- if多选择结构
- 嵌套的if结构
- switch多选择结构
if 单选择结构
- 我们很多时候需要去判断一个东西是否可行,然后我们才去执行,这样一个过程在程序中用if语句来表示
- 语法
- if(布尔表达式){ //如果布尔表达式为true将执行的语句}
import java.util.Scanner; public class IfDemo1 { 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双选择结构
- 那现在有一个需求,公司要收购一个软件,成功了,给人支付100万元,失败了,自己找人开发。这样的需求用一个if就搞不定了,我们需要有两个判断,需要一个双选择结构,所以就有了if-else结构。
- 语法
- if(布尔表达式){ //如果布尔表达式的值为true}else{ //如果布尔表达式的值为false}
import java.util.Scanner; public class IfDemo2 { public static void main(String[] args) { //考试分数大于60就是及格,小于60分就不及格 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多选择结构
- 我们发现刚才的代码不符合实际情况,真实的情况还可能存在ABCD,存在区间多级判断。比如90-100就是A,80-90就是B…等等,在生活中我们很多时候的选择也不仅仅只有两个,所以我们需要一个多选择结构来处理这类问题!
- 语法:
if(布尔表达式 1){ //如果布尔表达式 1的值为true执行代码 }else if(布尔表达式 2){ //如果布尔表达式 2的值为true执行代码 }else if(布尔表达式 3){ //如果布尔表达式 3的值为true执行代码 }else{ //如果以上布尔表达式都不为true执行代码 }
import java.util.Scanner; public class IfDemo3 { public static void main(String[] args) { //考试分数大于60就是及格,小于60分就不及格 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) { System.out.println("不及格"); } else { System.out.println("成绩不合法"); } scanner.close(); } }
嵌套的if结构
- 使用嵌套的 if…else 语句也是合法的。也就是说你可以在另一个 if 或者 else if 语句中使用 if 或者 else if
语句。你可以像 if 语句 一样嵌套 else if…else - 语法:
if(布尔表达式 1){ //如果布尔表达式 1的值为true执行代码 if(布尔表达式 2){ //如果布尔表达式 2的值为true执行代码 } }
- 思考?我们需要寻找一个数,在1-100之间
switch多选择结构
- 多选择结构还有一个实现方式就是 switch case 语句。
- switch case 语句判断一个变量与一系列值中某个值是否相等,每个值称为一个分支。
- switch 语句中的变量类型可以是:
- byte、short、int或者char。
- 从 Java SE 7 开始
- switch 支持字符串 String 类型了
- 同时 case 标签必须为字符串常量或字面量。
switch(expression){ case value: //语句 break; //可选 case value: //语句 break; //可选 //你可以有任意数量的case语句 default: //可选 //语句 }
public class SwitchDemo1 { public static void main(String[] args) { //case 穿透 //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; } } } public class SwitchDemo2 { public static void main(String[] args) { String name = "优秀"; //JDK 7 的新特性, 表达式结果可以是字符串 //字符的本质还是数字 //反编译 java---class (字节码文件) --- 反编译 (IDEA) switch (name){ case "优秀": System.out.println("优秀"); break; case "良好": System.out.println("良好"); break; default: System.out.println("弄啥捏~"); break; } } }
四.循环结构
-
while 循环
-
do…while 循环
-
for 循环
-
在 Java5 中引入了一种用于数组的增强型 for 循环
while 循环
- while 是最基本的循环,它的结构是:
while(布尔表达式){ //循环内容 }
- 只要布尔表达式为 true,循环就会一直执行下去。
- 我们大多数情况是会让循环停止下来的,我们需要一个让表达式失效的方式来结束循环。
- 少部分情况需要循环一直执行,比如服务器的请求响应监听等。
- 循环条件一直为 true 就会造成无限循环【死循环】,我们正常的业务编程中应该尽量避免死循环。会影响程序性能或者造成程序卡死奔溃!
- 思考:计算1+2+3+…+100=?
public class WhileDemo1 { public static void main(String[] args) { //输出1~100 int i = 0; while (i < 100) { i++; System.out.println(i); } } }
public class WhileDemo2 { public static void main(String[] args) { //死循环 while (true) { //等待客户端连接 //定时检查 } } }
public class WhileDemo3 { public static void main(String[] args) { //计算1+2+3+...+100=? int i = 0; int sum = 0; while (i < 100) { i++; sum += i; } System.out.println("和=" + sum); } }
do…while 循环
- 对于 while 语言而言,如果不满足条件,则不进入循环。但有时候我们需要即使不满足条件,也至少执行一次。
- do…while 循环和 while 循环相似,不同的是,do…while 循环至少会执行一次。
do{ //代码语句 }while(布尔表达式)
- while 和 do…while 的区别:
- while 先判断后执行;do…while 是先执行后判断!
- do…while 总是保证循环体会被至少执行一次!这是他们的主要差别。
public class DoWhileDemo1 { public static void main(String[] args) { int i = 0; int sum = 0; do { i++; sum += i; } while (i < 100); // while (i < 100) { // i++; // sum += i; // } System.out.println("和=" + sum); } }
public class DoWhileDemo2 { 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); a++; }while (a<0); } }
for循环
- 虽然所有循环结构都可以用 while 或者 do…while 表示,但 Java 提供了另一种语句——for循环,使一些循环结构变得更加简单。
- for 循环语句是支持迭代的一种通用结构,是最有效、最灵活的循环结构。
- for 循环执行的次数是在执行前就确定的。语法格式如下:
for(初始化; 布尔表达式; 更新){ //代码语句 }
- 练习1:计算0到100之间的奇数和偶数的和
- 练习2:用 while 或 for 循环输出1-1000之间能被5整除的数,并且每行输出3个
- 练习3:打印九九乘法表
public class ForDemo1 { public static void main(String[] args) { int a = 1; //初始化条件 while (a <= 100) { //条件判断 System.out.println(a); //循环体 a += 2; //迭代 } System.out.println("while循环结束~~~"); //快捷方式:100.fori //初始化//条件判断//迭代 for (int i = 1; i <= 100; i+=2) { System.out.println(i); } System.out.println("for循环结束~~~"); /** * 关于 for 循环有以下几点说明: * 1.最先执行初始化步骤。可以声明一种类型,但可初始化一个或多个循环控制条件,也可以是空语句。 * 2.然后,检查布尔表达式的值。如果为 true,循环体被执行。如果为 false,循环终止,开始执行循环体后面的语句。 * 3.执行一次循环后,更新循环控制变量(迭代因子控制循环变量的增减)。 * 4.再次检查布尔表达式。循环执行上面的过程。 */ } }
public class ForDemo2 { public static void main(String[] args) { //练习1:计算0到100之间的奇数和偶数的和 int oddSum = 0; int evenSum = 0; for (int i = 0; i <= 100; i++) { if (i % 2 != 0) { //奇数 oddSum += i; } else { //偶数 evenSum += i; } } System.out.println("奇数的和:"+oddSum); System.out.println("偶数的和:"+evenSum); } }
public class ForDemo3 { public static void main(String[] args) { //练习2:用 while 或 for 循环输出1-1000之间能被5整除的数,并且每行输出3个 for (int i = 0; i <= 1000; i++) { if (i % 5 == 0) { System.out.print(i + "\t"); } if (i % (5 * 3) == 0) { System.out.println(); } } //println 输出完换行 //print 输出完不会换行 } }
public class ForDemo4 { public static void main(String[] args) { //练习3:打印九九乘法表 //外层循环控制行,内层循环控制列 for (int j = 1; j <= 9; j++) { for (int i = 1; i <= j; i++) { System.out.print(j+"*"+i+"="+(j*i)+"\t"); } System.out.println(); } } }
增强for循环
- 这里我们先只是见一面,做个了解,之后数组我们重点使用
- Java5 引入了一种主要用于数组或者集合的增强型 for 循环。
- Java 增强 for 循环语法格式如下
for(声明语句 : 表达式){ //代码句子 }
- 声明语句:声明新的局部变量,该变量的类型必须和数组元素的类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等。
- 表达式:表达式是要访问的数组名,或者是返回值为数组的方法。
public class ForDemo5 { public static void main(String[] args) { int[] numbers = {10, 20, 30, 40, 50}; //定义了一个数组 for (int i = 0; i < numbers.length; i++) { System.out.println(numbers[i]); } System.out.println("==============="); //遍历数组的元素 for (int x : numbers) { System.out.println(x); } } }
break continue
-
break 在任何循环语句的主体部分,均可用 break 控制循环的流程。break 用于强行退出循环,不执行循环中剩余的语句。(break 语句也在 switch 语句中使用)
-
continue 语句用在循环语句体中,用于终止某次循环过程,即跳过循环体中未执行的语句,接着进行下一次是否执行循环的判定。
-
关于 goto 关键字
- goto 关键字很早就在程序设计语言中出现。尽管 goto 仍是 Java 的一个保留字,但并未在语言中得到正式使用;Java 没有 goto。然而,在 break 和 continue 这两个关键字的身上,我们仍然可以看出一些 goto 的影子—带标签的 break 和 continue。
- “标签” 是指后面跟一个冒号的标识符,例如:label:
- 对 Java 来说唯一用到标签的地方就是在循环语句之前。而在循环之前设置标签的唯一理由是:我们希望在其中嵌套另一个循环,由于 break 和 continue 关键字通常只中断当前循环,但若随同标签使用,它们就会中断到存在标签的地方。
public class BreakDemo { public static void main(String[] args) { int i = 0; while (i < 100) { i++; System.out.println(i); if (i == 30) { break; } } System.out.println("123"); } }
public class ContinueDemo { public static void main(String[] args) { int i = 1; while (i < 100) { i++; if (i % 10 == 0) { System.out.println(); continue; } System.out.println(i); } } }
这篇关于Java流程控制的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-29开源工具的魅力:让文档管理更“聪明”
- 2024-11-29Release-it开发入门教程
- 2024-11-29Rollup 插件入门教程:轻松掌握模块打包
- 2024-11-29从零到一,产品经理如何玩转项目管理和团队协作
- 2024-11-29如何通过精益生产管理工具帮助项目团队实现精准进度控制?
- 2024-11-29低代码应用开发课程:新手入门与基础教程
- 2024-11-29入门指南:全栈低代码开发课程
- 2024-11-29ESLint课程:初学者快速上手指南
- 2024-11-29JWT课程:新手入门教程
- 2024-11-29高效办公秘诀:文档管理中的可视化革命