java流程控制03-循环结构
一、while循环
1.while是最基本的循环,它的结构为
while(布尔表达式){
//循环内容
}
2.只要布尔表达式为true,循环就会一直执行下去
3.我们大多数情况是会让循环停下来,我们需要一个让表达式失效的方法来结束循环。
4.少部分情况需要循环一直执行,比如服务器请求响应监听等。
5.循环条件一直为true就会造成无限循环(死循环),我们正常的业务变成中,应尽量避免死循环。会影响程序性能或者造成程序卡死崩溃
package struct;
public class WhileDemo01 {
public static void main(String[] args) {
// 输出1-100
int i = 0;
while (i < 100){
i++;
System.out.println(i);
}
}
}
package struct;
public class WhileDemo02 {
public static void main(String[] args) {
// 死循环 在实践当中尽量避免死循环
while (true){
// 定时检查 等待客户端连接等情况
}
}
}
package struct;
public class WhileDemo03 {
public static void main(String[] args) {
// 计算1+2+...+100
int i = 0;
int sum = 0;
while (i <= 100) {
sum = sum + i;
i++;
}
System.out.println(sum);
}
}
二、do...while...循环
1.对于while语句而言,如果不满足条件,则不能进入循环。但有时我们需要即使不满足条件,也至少执行一次。
2.do...while循环和while相似,不同的是,do..while循环至少会执行一次。
do {
//代码语句
}while(布尔表达式);
3.while和do...while的区别
while先判断后执行。do...while是先执行后判断。
do...while总是保证循环体会被至少执行一次!这是他们的主要差别。
package struct;
public class DoWhileDemo01 {
public static void main(String[] args) {
int i = 0;
int sum = 0;
do {
sum = sum + i;
i++;
}while (i <= 100);
System.out.println(sum);
}
}
package 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);
}
}
三、for循环
1.虽然所有循环结构都可以用while或者do..while表示,但java提供了另一种语句:for循环,使一些循环结构变得更加简单。
2.for循环语句是支持迭代的一种通用结构,最有效、最灵活的循环结构。
3.for循环执行的次数是在执行前就确定的。语法格式如下:
for (初始化;布尔表达式;更新){
//代码语句
}
package struct;
public class ForDemo01 {
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循环有以下几点说明:
1.最先执行初始化步骤。可以声明一种类型,但可以初始化一个或多个循环控制变量,也可以是空语句
2.然后,检测布尔表达式的值。如果为true,循环体被执行。如果为false,循环终止,开始执行循环体后面的语句。
3.执行一次循环后,更新循环控制变量(迭代因子控制循环变量的增减)。
4.再次检测布尔表达式,循环执行上面的过程。
//死循环
for (; ; ){
}
练习一:计算0到100之间的奇数和偶数之和
package struct;
public class ForDemo02 {
public static void main(String[] args) {
int oddSum = 0;
int enenSum = 0;
for (int i = 0; i < 100; i++) {
if (i % 2 != 0) {
oddSum += i;
} else {
enenSum += i;
}
}
System.out.println("偶数的和" + oddSum);
System.out.println("奇数的和" + enenSum);
}
}
练习二:用while或for循环输出1-1000能被5整除的书,并且每行输出三个数
package struct;
public class ForDemo03 {
public static void main(String[] args) {
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");
}
}
}
}
package struct;
public class WhileDemo04 {
public static void main(String[] args) {
int i = 0;
while (i <= 1000) {
i++;
if (i % 5 == 0) {
System.out.print(i + "\t");
if (i % 15 == 0) {
System.out.println();
}
}
}
}
}
练习二:打印九九乘法表
package struct;
public class ForDemo04 {
public static void main(String[] args) {
// 1.先打印第一列
// 2. 把固定的1再用一个循环包起来
// 3. 去掉重复项,i <= j
// 4.调整样式
for (int j = 1; j <= 9; j++) {
for (int i = 1; i <= j; i++) {
System.out.print(i + "*" + j + "=" + (j * i) + "\t");
}
System.out.println();
}
}
}
增强for循环(了解,之后重点使用)
1.Java5引入了一种主要用于数组或集合的增强型for循环。
2.Java增强for循环语法格式如下:
for(声明语句:表达式)
{
//代码句子
}
3.声明语句:声明新的局部变量,该变量的类型必须和数组元素的类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等。
4.表达式:表达式是要访问的数组名,或者是返回值为数组的方法。
package struct;
public class ForDemo05 {
public static void main(String[] args) {
int[] number = {10, 20, 30, 40, 50};
for (int i = 0; i < 5; i++) {
System.out.println(number[i]);
}
System.out.println("=============");
for (int x : number) {
System.out.println(x);
}
}
}