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中文網其他相關文章!