1.赋值概念
使用双下标访问二维数组中的元素:
第一个下标代表:行号(高维下标)。
第二个下标代表:列号(低维下标)。
2.赋值实例
(1)赋值:从最高维开始,分别为每一维分配空间,例如:
String s[][] = new String[2][]; s[0] = new String[2]; s[1] = new String[3]; s[0][0] = new String("Good"); s[0][1] = new String("Luck"); s[1][0] = new String("to"); s[1][1] = new String("you"); s[1][2] = new String("!");
(2)输出
for (int i=0; i<s.length;i++){ for (String s1:s[i]){ System.out.print(s1 +' '); } }
结果
Good Luck to you !
以上是java二维数组如何赋值的详细内容。更多信息请关注PHP中文网其他相关文章!