循环结构
◆ while 循环
◆ do...while 循环
◆ for 循环
◆ 在 Java 5 中引入了一种主要用于数组的增强型 for 循环。
while 循环
◆ while 是最基本的循环,它的结构为:
◆ 只要布尔表达式为 true,循环就会一直执行下去。
◆ 我们大多数情况是会让循环停止下来的,我们需要一个让表达式失效的方式来结束循环。
◆ 少部分情况需要循环一直执行,比如服务器的请求响应监听等。
◆ 循环条件一直为 true 就会造成无限循环【死循环】,我们正常的业务编程中应该尽量避免死循环。会影响程序性能或者造成程序卡死奔溃!
◆ 思考:计算 1+2+3+…+100 = ?
package com.kuang.struct;
public class WhileDemo01 {
public static void main(String[] args) {
//输出 1~100
int i = 0;
while (i<100){
i++;
System.out.println(i);
}
}
}
package com.kuang.struct;
public class WhileDemo02 {
public static void main(String[] args) {
//死循环
while (true){
/*等待客户端连接:等待一个人聊天,就永远监听他;
QQ就是一直监听着,等待别人发送消息(不过这种不使用这种方法)
*/
//定时检查:比如闹钟
// ......
}
}
}
package com.kuang.struct;
public class WhileDemo03 {
public static void main(String[] args) {
//计算 1+2+3+…+100 = ?
//高斯的故事
int i = 0;
int sum = 0;
while (i<=100){
sum = sum + i;
i++;
}
System.out.println(sum);//结果:5050
}
}
do...while 循环
◆ 对于 while 语句而言,如果不满足条件,则不能进入循环。但有时候我们需要即使不满足条件也至少执行一次。
◆ do...while 循环和 while 循环相似,不同的是,do...while 循环至少会执行一次。
◆ While 和 do...While 的区别:
- while 先判断后执行。do...while 是先执行后判断!
- Do...while 总是保证循环体会被至少执行一次!这是他们的主要差别。
package com.kuang.struct;
public class DoWhileDemo02 {
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);
/*
结果:
=====================
0
*/
}
}
For 循环
◆ 虽然所有循环结构都可以用 while 或者 do...while 表示,但Java提供了另一种语句— for 循环,使一些循环结构变得更加简单。
◆ for 循环语句是支持迭代的一种通用结构,是最有效、最灵活的循环结构。
◆ for 循环执行的次数是在执行前就确定的。语法格式如下:
◆ 练习1:计算 0 到 100 之间的奇数和偶数的和
◆ 练习2:用 while 或 for 循环输出 1-1000 之间能被 5 整除的数,并且每行输出 3 个
◆ 练习3:打印九九乘法表
package com.kuang.struct;
public class ForDemo01 {
public static void main(String[] args) {
int a = 1;//初始化条件
while (a <= 100) {//条件判断
System.out.println(a);//循环体
a += 2;//迭代:每一次循环它都会向 a 的值刷新,而且它会让这个程序终止
}
System.out.println("while循环结束!");
//初始化//条件判断//迭代
for (int i = 1; i <= 100; i++) {
System.out.println(i);
}
System.out.println("for循环结束");
//快捷键:100.for
for (int i = 0; i < 100; i++) {
}
/*
关于 for 循环有以下几点说明:
最先执行初始化步骤,可以声明一种类型,但可初始化一个或多个循环控制变量,也可以是空语句。
然后,检测布尔表达式的值,如果为 true,循环体被执行,如果为 false,循环终止,开始执行循环体后面的语句
执行一次循环后,更新循环控制变量(迭代因子控制循环变量的增减)。
再次检测布尔表达式,循环执行上面的过程
*/
//死循环
for (; ; ){
}
}
}
package com.kuang.struct;
public class ForDemo02 {
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;//oddSum = oddSum + i;
}else {//偶数
evenSum+=i;
}
System.out.println("奇数的和:"+oddSum);
System.out.println("偶数的和:"+evenSum);
}
}
}
package com.kuang.struct;
public class ForDemo03 {
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();
//System.out.print("\n");
}
}
//println 输出完会换行
//print 输出完不会换行
}
}
package com.kuang.struct;
/*
1*1=1
2*1=2 2*2=4
3*1=3 3*2=6 3*3=9
4*1=4 4*2=8 4*3=12 4*4=16
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25
6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36
7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49
8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64
9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81
*/
public class ForDemo04 {
public static void main(String[] args) {
//练习3:打印九九乘法表
//一列一列分析
//1.我们先打印第一列,这个大家应该都会
//2.我们把固定的 1 再用一个循环包起来
//3.去掉重复项,i <= j
//4.调整样式
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 (int j = 1; j <= 9; j++) {
for (int i = 1; i <= 9; i++) {
System.out.println(j+"*"+i+"="+(j*i));
}
}
*/
}
}
增强 for 循环
◆ 这里我们先只是见一面,做个了解,之后数组我们重点使用。
◆ Java5 引入了一种主要用于数组或集合的增强型 for 循环。
◆ Java 增强 for 循环语法格式如下:
◆ 声明语句:声明新的局部变量,该变量的类型必须和数组元素的类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等。
◆ 表达式:表达式是要访问的数组名,或者是返回值为数组的方法。
package com.kuang.struct;
public class ForDemo05 {
public static void main(String[] args) {
int[] numbers = {10,20,30,40,50};//定义了一个数组
for (int i = 0; i < 5; i++) {
System.out.println(numbers[i]);
}
System.out.println("===================");
//遍历数组的元素 简化的for循环
for (int x:numbers){
//它把 numbers 这个数组的每一项遍历出来,赋值给了int x,
// 这个 x 就是默认的每一个 number里的数字,它每次循环就从里面取值
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 关键字通常只中断当前循环,但若随同标签使用,它们就会中断到存在标签的地方。
package com.kuang.struct;
//break
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");
/*
结果:
1
2
...
29
30
123
*/
}
}
package com.kuang.struct;
//continue
public class ContinueDemo {
public static void main(String[] args) {
int i = 0;
while (i<100){
i++;
if (i%10==0){
System.out.println(i);
continue;
}
System.out.print(i);
//break 与 continue 区别
//break 在任何循环语句的主体部分,均可用 break 控制循环的流程
//break 用于强行退出循环,不执行循环中的剩余语句。(break 语句也在 switch 语句中使用)
//
//continue 语句用在循环语句体中,用于终止某次循环过程,
//即跳过循环体中尚未执行的语句,接着进行下一次是否执行循环的判定
}
/*
结果:
12345678910
11121314151617181920
21222324252627282930
31323334353637383940
41424344454647484950
51525354555657585960
61626364656667686970
71727374757677787980
81828384858687888990
919293949596979899100
*/
}
}
package com.kuang.struct;
//goto
public class LabelDemo {
public static void main(String[] args) {
//打印 101~150 之间的质数
//质数是指在大于1的自然数中,除了1和它本身以外不再有其他因数的自然数
int count = 0;
//不建议使用
outer:for (int i = 101; i < 150; i++) {
for (int j = 2; j <i/2 ; j++) {
if (i % j == 0){
continue outer;
}
}
System.out.print(i+" ");
/*
结果:
101 103 107 109 113 127 131 137 139 149
*/
}
}
}
练习:打印三角形
package com.kuang.struct;
public class TestDemo {
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();
}
/*
结果:
*
***
*****
*******
*********
*/
}
}