zoukankan      html  css  js  c++  java
  • Map 的四种遍历方式

    Map 的四种遍历方式

    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Map;
    public class TestMap {
    	public static void main(String[] args) {
    		Map<String, String> map = new HashMap<String, String>();
    		map.put("1", "value1");
    		map.put("2", "value2");
    		map.put("3", "value3");
    		// 第一种:普遍使用,二次取值
    		System.out.println("通过Map.keySet遍历key和value:");
    		for (String key : map.keySet()) {
    			System.out.println("key= " + key + " and value= " + map.get(key));
    		}
    		// 第二种
    		System.out.println("通过Map.entrySet使用iterator遍历key和value:");
    		Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();
    		while (it.hasNext()) {
    			Map.Entry<String, String> entry = it.next();
    			System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
    		}
    		// 第三种:推荐,尤其是容量大时
    		System.out.println("通过Map.entrySet遍历key和value");
    		for (Map.Entry<String, String> entry : map.entrySet()) {
    			System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
    		}
    		// 第四种
    		System.out.println("通过Map.values()遍历所有的value,但不能遍历key");
    		for (String v : map.values()) {
    			System.out.println("value= " + v);
    		}
    	}
    }
    

    点击查看结果

    ``` 通过Map.keySet遍历key和value: key= 1 and value= value1 key= 2 and value= value2 key= 3 and value= value3 通过Map.entrySet使用iterator遍历key和value: key= 1 and value= value1 key= 2 and value= value2 key= 3 and value= value3 通过Map.entrySet遍历key和value key= 1 and value= value1 key= 2 and value= value2 key= 3 and value= value3 通过Map.values()遍历所有的value,但不能遍历key value= value1 value= value2 value= value3 ```
  • 相关阅读:
    android 使用adb重新建立 eclipse和模拟器间的连接
    android ADB server didn't ACK
    Android getSystemService()
    Android隐藏标题栏
    Android 与WCF REST 服务联调
    Eclipase 无法启动,启动界面显示完版本号之后无响应
    调用WCF REST服务时,使用JSON
    org.apache.http.conn.HttpHostConnectException: Connection to refused
    SqlServer跨域查询
    ASP.net导出Excel的几种方式
  • 原文地址:https://www.cnblogs.com/hgnulb/p/10091197.html
Copyright © 2011-2022 走看看