我们声明数组的方式之间有什么区别吗?

时间:2013-11-24 11:44:17

标签: java

  • int[] a = new int[] {1, 2, 3};

  • int[] a = {1, 2, 3};

这些之间是否存在实际差异?

3 个答案:

答案 0 :(得分:2)

它们是等价的,两者之间没有区别。

new关键字会创建一个对象 ..而您正在创建一个array,它是一个对象。

请参阅Chapter 10. Arrays

  

在Java编程语言中,数组是对象 (§4.3.1) ...

答案 1 :(得分:0)

你的第二种形式只是第一种形式的句法简写。它们编译成完全相同的字节码。

答案 2 :(得分:0)

从编译的类文件中查看字节码,没有区别。

public class XFace  {

    public void test1(){
        int[] a = new int[] {1, 2, 3};
    }


    public void test2(){
        int[] a = {1, 2, 3};

    }

}

Compiled from "XFace.java"
public class XFace extends java.lang.Objec
public XFace();
  Code:
   0:   aload_0
   1:   invokespecial   #8; //Method java/
   4:   return

public void test1();
  Code:
   0:   iconst_3
   1:   newarray int
   3:   dup
   4:   iconst_0
   5:   iconst_1
   6:   iastore
   7:   dup
   8:   iconst_1
   9:   iconst_2
   10:  iastore
   11:  dup
   12:  iconst_2
   13:  iconst_3
   14:  iastore
   15:  astore_1
   16:  return

public void test2();
  Code:
   0:   iconst_3
   1:   newarray int
   3:   dup
   4:   iconst_0
   5:   iconst_1
   6:   iastore
   7:   dup
   8:   iconst_1
   9:   iconst_2
   10:  iastore
   11:  dup
   12:  iconst_2
   13:  iconst_3
   14:  iastore
   15:  astore_1
   16:  return

}