int[] array = new int[10];for(int i = 0;i != 10; i++){ array[i] = i;}
int[10] a=new int[10];for (int i : a){ i=0;}
没有for循环语句,不解释
for each用法?