A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

下列数组分别产生几个对象?求解释!!
int[] arr = new int[3];

int[][] arr = new int[2][3];

Integer[] arr = new Integer[3];

Integer[][] arr =new Integer[2][3];

后来查了一下,分别是是这样:1个;3个;1个;1个 对象?!是这样吗?
有点迷糊,为什么呢?
[ 本帖最后由 张小明 于 2011-07-27  23:17 编辑 ]

5 个回复

倒序浏览
黑马网友  发表于 2011-7-27 10:18:15
沙发
int[] arr = new int[3];   产生了3个对象   0  1 2

int[][] arr = new int[2][3];      这个我不清楚  个人感觉是 6个  

Integer[] arr = new Integer[3]; 产生1个对象存放1*3=3个Integer的[][]数组对象

Integer[][] arr =new Integer[2][3]; 产生1个对象存放2*3=6个Integer的[][]数组对象
回复 使用道具 举报

回复 楼主 的帖子

Java中没有真正意义的二维数组,请不要跟C中搞混了
int[] arr = new int[3]; 是产生三个对象,arr[0],arr[1],arr[2]
int[][] arr = new int[2][3]; 是产生两个对象,arr[0][3],arr[1][3],
Integer[] arr = new Integer[3]; 是产生三个对象,arr[0],arr[1],arr[2]
Integer[][] arr =new Integer[2][3]; 是产生两个对象,arr[0][3],arr[1][3],
程序验证如下:[code=java]package Test.Yangwg;

public class ObjectFactoryTest {
        public static void main(String[] args) {
                int[] arr = new int[3];
                int[][] arr1 = new int[2][3];
                Integer[] arr2 = new Integer[3];
                Integer[][] arr3 =new Integer[2][3];
                System.out.println(arr.length);
                System.out.println(arr1.length);
                System.out.println(arr2.length);
                System.out.println(arr3.length);
        }
}[/code]结果:
3
2
3
2
[ 本帖最后由 杨武刚 于 2011-07-27  10:46 编辑 ]
回复 使用道具 举报
黑马网友  发表于 2011-7-27 12:26:42
板凳
int[] arr = new int[3];

int[][] arr = new int[2][3]; 都是基本数据类型的数组,基本数据类型不是对象,所以他们都只产生一个对象就是数组本身。

Integer[] arr = new Integer[3]; 产生了4个对象,一个是数组本身,另外三个是arr[0],arr[1]和arr[2]

Integer[][] arr =new Integer[2][3]; 产生了7个对象,一个是数组本身,另外的是arr[0][0],arr[0][1],arr[0][2],arr[1][0],arr[1][1],arr[1][2]
回复 使用道具 举报
黑马网友  发表于 2011-7-27 22:55:29
报纸
谢谢楼上的回答,可有资料说,分别有1个、3个、1个、1个对象?!为什么呢?
回复 使用道具 举报
int[] arr = new int[3];     产生一个数组对象
int[][] arr = new int[2][3];  产生三个数组对象
Integer[] arr = new Integer[3];  产生一个数组对象
Integer[][] arr = new Integer[2][3];  产生三个数组对象

见下图,
http://hi.csdn.net/space-2292579-do-album-picid-870562.html
[ 本帖最后由 朱玲均 于 2011-07-28  10:24 编辑 ]
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马