博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GotoTest
阅读量:6568 次
发布时间:2019-06-24

本文共 838 字,大约阅读时间需要 2 分钟。

循环标签跳出循环

public class GotoTest {    public static void main(String[] args) {        int[][] array={                {
1,20,3}, {
28,90,10}, {
60,46,71,100}, {
41,420,43} }; outer: for (int rowIdx = 0; rowIdx < array.length; rowIdx++) { for (int columnIdx = 0; columnIdx < array[rowIdx].length; columnIdx++) { System.out.print(array[rowIdx][columnIdx]+" "); if (columnIdx>2) { break outer; } } System.out.println(""); } System.out.println("End"); }}

 

Output:

1   20   3   28   90   10   60   46   71   100   End

 

转载于:https://www.cnblogs.com/softidea/p/4582324.html

你可能感兴趣的文章
Centos7.1环境下搭建BugFree
查看>>
共用y轴的双图形绘制
查看>>
第31讲 | 数字货币钱包服务
查看>>
P2073 送花
查看>>
iOS端项目注释规范附统一代码块
查看>>
HTTP深入浅出 http请求
查看>>
为YUM设置代理的方法
查看>>
Java 编程的动态性 第1 部分: 类和类装入--转载
查看>>
【转】持久化消息队列之MEMCACHEQ
查看>>
Dom4j学习笔记
查看>>
C语言 HTTP上传文件-利用libcurl库上传文件
查看>>
[MEAN Stack] First API -- 7. Using Route Files to Structure Server Side API
查看>>
调试逆向分为动态分析技术和静态分析技术(转)
查看>>
业务对象和BAPI
查看>>
微软职位内部推荐-Senior Software Engineer
查看>>
程序中的魔鬼数字
查看>>
session cookie
查看>>
$.extend({},defaults, options) --(初体验三)
查看>>
android 一步一步教你集成tinker(热修复)
查看>>
到底有多少内存
查看>>