2015-10-22 72 views

回答

2

您可以使用兩個嵌套循環。一個遍歷第一個維度,另一個遍歷第二個維度。

喜歡:

for(int i = 0; i < array.length; i++) { 
    for(int j = 0; j < array[i].length; j++) { 

    /** check if array[i][j] contains your desired value **/ 

    } 
} 
0
char[][] arr = ...; 
for (char[] subArray : arr) 
    for(char current : subArray) 
    { 
     //your check code here 
    }