动态赋值 语法: int[] a=new int[5];//先声明一个数组,并且实例化,数组的长度为5 int[0]=1; int[1]=4; int[2]=3; int[3]=2; int[4]=6; 1. 2. 3. 4. 5. 6. 7.