如题:
int[] arr = new int[3]; int[][] arr = new int[2][3]; Integer[] arr = new Integer[3]; Integer[][] arr = new Integer[2][3]; 以上语句分别会产生多少个对象?