高级for循环

高级for循环

格式:
for(数据类型 变量名:被遍历的集合(Collection)或者数组)
{
}
对集合进行遍历。
只能获取元素,但是不能对集合进行操作。

迭代器除了遍历,还可以进行remove集合中元素的动作。
如果使用ListIterator,还可以在遍历过程中对集合进行增删改查的动作。

传统for循环和高级for循环有什么区别呢?

高级for有一个局限性。必须有被遍历的目标。

建议:在遍历数组的时候,还是希望使用传统for,因为传统for可以定义脚标。

import java.util.*;
class ForEachDemo 
{
    public static void main(String[] args) 
    {
        ArrayList al = new ArrayList();

        al.add("abc1");
        al.add("abc2");
        al.add("abc3");

        for(Object s:al)
        {
//          s = "kk";
            System.out.println(s);
        }
        System.out.println(al);
/*
        Iterator it = al.iterator();

        while(is.hasNext())
        {
            System.out.println(it.next());
        }   
*/      
        int[] arr = {3,5,1};
        for (int x=0; x hm =new HashMap();

        hm.put(1,"a");
        hm.put(2,"b");
        hm.put(3,"c");

        Set keySet = hm.keySet();
        for(Integer i : keySet)
        {
            System.out.println(i+"::"+hm.get(i));
        }

//      Set> entrySet = hm.entrySet();
//      for(Map.Entry me : entrySet);

        for(Map.Entry me:hm.entrySet())
        {
            System.out.println(me.getKey()+"-------"+me.getValue());
        }
    }
}

你可能感兴趣的:(高级for循环)