在J2SE 5.0之後,引進了foreach新語法,上例你可以這麼改寫:. public void go(int[] arr) { for(int element : arr) { System.out.println(element); }
確定! 回上一頁