我不理解标记为break
的语句,for
语句。它会阻止它下方或离它最远的那个吗?
另外,我不明白为什么j
被初始化两次,为什么不在for
语句中初始化它?此外,当j < arrayOfInts[i].length
无法j
成为数组0
中的元素时(直到它递增为止),因为j
可以是数组lower
中的元素1}} arrayOfInt[i]
对吧?
class BreakWithLabelDemo {
public static void main(String[] args) {
int[][] arrayOfInts = {
{ 32, 87, 3, 589 },
{ 12, 1076, 2000, 8 },
{ 622, 127, 77, 955 }
};
int searchfor = 12;
int i;
int j = 0;
boolean foundIt = false;
search:
for (i = 0; i < arrayOfInts.length; i++) {
for (j = 0; j < arrayOfInts[i].length;
j++) {
if (arrayOfInts[i][j] == searchfor) {
foundIt = true;
break search;
}
}
}
if (foundIt) {
System.out.println("Found " + searchfor + " at " + i + ", " + j);
} else {
System.out.println(searchfor + " not in the array");
}
}
}