Java遍历Map,List的4种方法



最后编辑时间:2015-3-20

遍历Map参考:http://www.cnblogs.com/kristain/articles/2033566.html

性能对比测试:
http://www.cnblogs.com/fczjuever/archive/2013/04/07/3005997.html




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遍历keyvalue“);
  for (String key : map.keySet()) {
   System.out.println(“key= “+ key + ” and value= ” + map.get(key));
  }
  
  //
第二种
  System.out.println(“
通过Map.entrySet使用iterator遍历keyvalue“);
  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遍历keyvalue”);
  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);
  }
 }




遍历List参考:http://www.cnblogs.com/interdrp/p/3663602.html

 




public static void main(String args[]){
        List<String> list = new ArrayList<String>();
        list.add(“luojiahui”);
        list.add(“luojiafeng”);

        //方法1
        Iterator it1 = list.iterator();
        while(it1.hasNext()){
            System.out.println(it1.next());
        }

        //方法2
        for(Iterator it2 = list.iterator();it2.hasNext();){
             System.out.println(it2.next());
        }

        //方法3
        for(String tmp:list){
            System.out.println(tmp);
        }

        //方法4
        for(int i = 0;i < list.size(); i ++){
            System.out.println(list.get(i));
        }

    }




 

    原文作者:CharlieChen1989
    原文地址: https://blog.csdn.net/charliechen1989/article/details/44495097
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞