遍历Map的三种方法

三种方法是:1.遍历key;2.遍历entry;3.遍历value(只能取出value)。

public static void main(String[] args) {  
        Map map = new HashMap();  
        map.put("1", "values1");  
        map.put("2", "values2");  
        map.put("3", "values3");  

        // 遍历key  
        for (String key : map.keySet()) {  
            System.out.println(key + " ---> " + map.get(key));  
        }  

        // 遍历entry  
        for (Entry entry : map.entrySet()) {  
            System.out.println(entry.getKey() + " ---> " + entry.getValue());  
        }  

        // 遍历value  
        for (String value : map.values()) {  
            System.out.println(value);  
        }  
    }  

你可能感兴趣的:(string,遍历,地图,hashmap)