定义了一个数组,会在栈中压入一个东西;一旦new了一个数组,就会在堆里开辟了一个空间
第一种 直接定义并赋值
int[] a={1,2,3,4,5};
第二种 new一个数组,然后赋值 如果不赋值 则默认为零;
int[] a = new int[10];a[0]=1;a[1]=2;