Created
April 16, 2014 11:33
-
-
Save shoheikawano/10857603 to your computer and use it in GitHub Desktop.
プログラミング初歩見習いのJavaメモ / ラベル付きループ ref: http://qiita.com/shohe_i/items/518cfb6ad00f819ff0f6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loop1: | |
for(int i = 0; i < 3; i++) { | |
for(int j = 0; j < 5; j++) { | |
if (j==3) { | |
break loop1; | |
} | |
System.out.println("i=" + i + ", j=" + j); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i=0, j=0 | |
i=0, j=1 | |
i=0, j=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment