0
Can anyone explain about multiple arrays??
4 ответов
+ 1
Do you mean nested/multi dimensional arrays?
+ 1
They are just arrays of other arrays. For example, if you have a two dimensional array you basically have a table or a matrix.
String[][] table = new String[][] {
new String [] {"a", "b", "c"},
new String [] {"d", "e", "f"},
new String [] {"g", "h", "i"},
new String [] {"j", "k", "l"},
};
When you index the top most array you get another array.
table[0] returns ["a", "b", "c"]
0
multi dimensional please
0
yeah multi dimensional arrays