本帖最后由 wangjinyu501 于 2013-3-15 08:51 编辑
增强型的for循环 优点主要体现在集合中,随便举个例子
比如对 set 的遍历 一般是迭代遍历:- Set<String> set = new HashSet<String>();
- Iterator<String> it = set.iterator();
- while (it.hasNext()) {
- String str = it.next();
- System.out.println(str);
- }
复制代码 for循环遍历:- for (String str : set) {
- System.out.println(str);
- }
复制代码 是不是简单些,当然也有缺点,就是 在遍历集合过程中,不能对集合本身进行操作
|