标签:cal integer blog static div 接口 list logs 重要
增强for循环可以在某些时候简化对数组和集合的遍历。增强for循环需要集合实现了Iterable接口。
public static void main(String[] args) { //遍历数组 for(String s : args){ System.out.println(s); } ArrayList<Integer> arrayList = new ArrayList<Integer>(); arrayList.add(1); arrayList.add(3); arrayList.add(5); //通常方式遍历集合 Iterator<Integer> it = arrayList.iterator(); while(it.hasNext()){ System.out.println(it.next()); } //增强for循环方式遍历集合。 for(int a : arrayList){ System.out.println(a); } }
标签:cal integer blog static div 接口 list logs 重要
原文地址:http://www.cnblogs.com/coe2coe/p/6653548.html