我有一个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[][]
数组。虽然我很想知道是否还有其他好的方法可以做到这一点。