Java continue 语句
continue 语句可以在任何 循环控制结构。它使循环立即跳转到循环的下一个迭代。
在 for 循环, continue 关键字使控制立即跳转到更新语句。
在 while 循环 或 do/while 循环,控制立即跳转到布尔表达式。
语法
Continue 的语法是任何循环内的单个语句
continue;
流程图
示例
示例 1:使用 continue 和 while 循环
在此例如,我们展示了如何使用 continue 语句在 while 循环中跳过元素 15,该循环用于打印从 10 到 19 的元素。这里我们初始化了一个 int 变量 x 的值为 10。然后在 while 循环中,我们检查 x 是否小于 20,在 while 循环中,我们打印 x 的值并递增该值x 减 1。While 循环将一直运行,直到 x 变为 15。一旦 x 为 15,Continue 语句将跳过 while 循环,同时跳过循环体的执行,继续循环。
public class Test {
public static void main(String args[]) {
int x = 10;
while( x < 20 ) {
x++;
if(x == 15){
continue;
}
System.out.print("value of x : " + x );
System.out.print("\n");
}
}
}
输出
value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 16
value of x : 17
value of x : 18
value of x : 19
value of x : 20
示例 2:在 for 循环中使用 continue
在此示例中,我们将展示如何在 for 循环中使用 continue 语句来跳过 要打印的数组。在这里,我们创建一个整数数组并为其初始化一些值。我们创建了一个名为index的变量来表示for循环中数组的索引,根据数组的大小检查它并将其增加1。在for循环体内,我们使用索引表示法打印数组的元素。一旦遇到 30 作为值, continue 语句就会跳转到 for 循环的更新部分并继续循环。
public class Test {
public static void main(String args[]) {
int [] numbers = {10, 20, 30, 40, 50};
for(int index = 0; index < numbers.length; index++) {
if(numbers[index] == 30){
continue;
}
System.out.print("value of item : " + numbers[index] );
System.out.print("\n");
}
}
}
输出
value of item : 10
value of item : 20
value of item : 40
value of item : 50
示例 3:使用 continue 和 do while 循环
在此示例中,我们展示了如何使用 continue 语句在 do while 循环中跳过元素 15,该循环用于打印从 10 到 19 的元素。这里我们用 a 初始化了一个 int 变量 x值为 10。然后在 do while 循环中,我们在 body 之后检查 x 是否小于 20,在 while 循环中,我们打印 x 的值并将 x 的值增加 1。While 循环将运行直到 x 变为15. 一旦 x 为 15, continue 语句将跳转 while 循环,同时跳过循环体的执行,继续循环。
public class Test {
public static void main(String args[]) {
int x = 10;
do {
x++;
if(x == 15){
continue;
}
System.out.print("value of x : " + x );
System.out.print("\n");
} while( x < 20 );
}
}
输出
value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 16
value of x : 17
value of x : 18
value of x : 19
value of x : 20