多维数组及其内存分析

多维数组看成以数组为元素的数组。实际中,我们一般使用容器。
 1 package test2dimensionarray;
 2 public class Test2DArray {
 3        public static void main(String[] args) {
 4              int [][]arr = new int[3][];//第一维数组必须指明其长度!
 5  
 6              arr[0] = new int[] {1,2,3,4};
 7              arr[1] = new int[] {5,6,7,8,9,10};
 8              System.out.println(arr[1][3]);
 9              
10              int [][]array= {{1,2,3},{5,6,7}};
11              System.out.println(array[0][2]);
12        }
13 }
 
posted @ 2019-10-20 16:15  Kundalini  阅读(342)  评论(0)    收藏  举报