我有一個String[][]
類型的數組,這樣,如何獲得的String [] []數組的長度
static final String arrChildelements[][] = {
{ "1", "2", "3"..... },
{ "A", "B", "C"..... },
{ "X", "Y", "Z"..... } };
這裏的行數是固定的,即3.現在我想存儲該數組中一些其他相同類型的數組。我做了什麼至今,
for (int i = 0; i < 3; i++) {
for (int j = 0; j < secondColumnLength; j++) {
//Here I have no idea that how to get the number of elements for the column
arrChild[i][j] = arrChildelements[i][j];
}
}
到目前爲止,我只能記住這個方法通過String[][]
陣列進行迭代。雖然我很想知道是否有其他的好方法可以做到這一點。
您需要循環至少一次,在循環內您可以使用Copyof http://developer.android.com/reference/java/util/Arrays.html#copyOf(int [],int) – AurA