循环结构
- while 循环
- do…while 循环
- for 循环
- 在Java5 中引入了一种主要用于数组的增强型for 循环。
while 循环
- while是最基本的循环,它的结构为:
while(布尔表达式){
//循环内容
}
- 只要布尔表达式为ture,循环就会一直执行下去。
- 我们大多数情况是会让循环停止下来的,我们需要一个让表达式失效的方式来结束循环。
- 少部分情况需要循环一直执行,比如服务器的请求响应监听等。
- 循环条件一直为true就会造成无限循环(死循环),我们正常的业务编程中应该尽量避免死循环。会影响程序性能或者造成程序卡死崩溃!
- 思考计算1+2+3+……+100=?
package com.uky.struct;
public class WhileDemo1 {
public static void main(String[] args) {
//输出1~100
int i = 0;
while (i < 100) {
i++;
System.out.println(i);
}
}
}
返回值如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Process finished with exit code 0
看下死循环的案例(先不跑程序)
package com.uky.struct;
public class WhileDemo2 {
public static void main(String[] args) {
//死循环
while (true) {
//比如等待客户端链接
//定时检查
//.......
}
}
}
思考题:
package com.uky.struct;
public class WhileDemo3 {
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
Process finished with exit code 0
do…while 循环
- 对于while语句而言,如果不满足条件,则不能进入循环。但有时候我们需要即使不满足条件,也至少执行一次。
- do……while 循环和 while 循环相似,不同的是,do……while 循环至少会执行一次。
do {
//代码语句
}while(布尔表达式)
- While和do……while的区别
- while先判断后执行。do……while是先执行后判断!
- do……while 总是保证循环体会被至少执行一次!这是他们的主要差别。
package com.uky.struct;
public class DowhileDemo1 {
public static void main(String[] args) {
int i = 0;
int sum=0;
do {
sum=sum+i;
i++;
}while (i<=100);
System.out.println(sum);
}
}
返回值也是没问题的,执行了一次。
5050
Process finished with exit code 0
测试下差别,一个先执行,一个至少执行一次。
package com.uky.struct;
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);
}
}
返回值看出while先判断,do……while先执行了一次。
================
0
Process finished with exit code 0
for 循环☆
- 虽然所有循环结构都可以用while或者do……while表示,但Java提供了另一种语句----for循环,使一些循环结构变得更加简单。
- for循环语句是支持迭代的一种通用结构,是最有效、最灵活的循环结构。
- for循环执行的次数是在执行前就确定的。语法格式如下:
for(初始化;布尔表达式;更新){
//代码语句
}
展示下for循环的干净魅力和简洁灵活有效,好多形容词,无以言表。 好像有那么点感受到很多很牛的人,别人形容他写的代码像诗歌一样优美,我想应该也无外乎就是格式的严谨和代码的简洁吧!
package com.uky.struct;
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循环结束!");
//for循环的内容类型,也是初始化值,条件判断,迭代,比上面干净漂亮很多,一条代码解决了。
for(int i=1;i<=100;i++){
System.out.println(i);
}
System.out.println("for循环结束!");
}
}
关于for循环有以下几点说明:
最先执行初始化步骤,可以声明一种类型,但可初始化一个或多个循环控制变量,也可以是空语句。
然后,检测布尔表达式的值。如果为true,循环体被执行。如果为false,循环终止,开始执行循环体后面的语句。
执行一次循环后,更新循环控制变量(迭代因子控制循环变量的增减)。
再次检测布尔表达式,循环执行上面的过程。
//死循环
for(;;){
}
- 练习1:计算0到100之间的奇数和偶数的和
- 练习2:用while或for循环输出1-1000之间能被5整除的数,并且每行输出3个
- 练习3:打印九九乘法表
package com.uky.struct;
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++) {//如果初始值:i等于0,条件判断:小于100,迭代自增1,循环跑这个语句,直到不满足小于100的这个条件时终止。
if (i % 2 != 0) {//模运算取余,如果i除以2不等于0,说明肯定是奇数
oddSum += i;// +=,这句话意思是 oddSum = oddSum + i 这个等式不断迭代。
}else {//否则就是偶数
evenSum += i;// 这句意思一样,evenSum = evenSum + i,即,偶数和=本身+i
}
}
System.out.println("奇数的和"+oddSum);
System.out.println("偶数的和"+evenSum);
}
}
package com.uky.struct;
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) {//如果i模5等于0说明被5整除
System.out.print(i+"\t");//\t为转义字符
}
if (i % (5*3) == 0) {//如果i模15余0,也可以是这个意思,如果循环了3次被5整除的数就换行,跟一次15一个概念
System.out.print("\n");
//也可以这样代表换行System.out.println();
}
//拓展知识:println 输出完会换行
//print 输出完不会换行
}
}
}
package com.uky.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 ForDemo4 {
public static void main(String[] args) {
//练习3:打印九九乘法表
/*
第一步做了打印第一列的事儿:
for(int i=1;i<=9;i++){
System.out.println(1+"*"+i+"="+(1*i));
}
*/
//第二步,把固定的1再用一个循环嵌套起来包起来,1换成j
//第三步,发现打印出很多重复的值,所以去掉重复项,i<= j
//第四步,调整样式 每行有空格键即tab键,用/t,再把println换成print,即执行完换行。
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(声明语句:表达式){
//代码句子
}
- 声明语句:声明新的局部变量,该变量的类型必须和数组元素的类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等。
- 表达式:表达式是要访问的数组名,或者是返回值为数组的方法。
package com.uky.struct;
public class ForDemo5 {
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 (int x:numbers) {
System.out.println(x);
}
}
}
返回值上下两种方法一样,知道有一种这么简单的for语句。
10
20
30
40
50
=======分割线=========
10
20
30
40
50
Process finished with exit code 0
标签:do,Java,System,while,循环,println,public,out
From: https://blog.csdn.net/2401_84145402/article/details/137470550