java快速结束嵌套循环
快速结束for循环
out:
for (int i = 0; i < 5; i++) {
in:
for (int j = 0; j < 5; j++) {
if (j == 2) {
break out;
}
System.out.println("i= " + i + " j= " + j);
}
}
解释 将外层for循环起别名 o u t \color{red}{out} out,将内层for循环起别名 i n \color{red}{in} in
b
r
e
a
k
\color{red}{break}
break
o
u
t
;
\color{red}{out;}
out; 结束外层for循环。
运行结果:
文章来源:https://www.toymoban.com/news/detail-471235.html
学的不是技术,更是梦想!!!文章来源地址https://www.toymoban.com/news/detail-471235.html
到了这里,关于java快速结束嵌套循环的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!