<1>JDK1.5新增的for循環對於遍歷array或collection很是便利。數組
<2>缺陷:
數組:不能方便地訪問下標值。
集合:與使用Interator相比,不能方便地刪除集合中的東西。
在內部也是調用Interato
<3>總結:
除了簡單遍歷並讀出其中的內容,不建議使用加強for。
【程序分析】
int[] arr = {1,2,3,4,5};
for(int i : arr){
System.out.println(i);
}
Collection c = new ArrayList();
c.add(new String("aa"));
c.add(new String("bb"));
for(Object o : c){
System.out.println(o);
}