黑马程序员技术交流社区

标题: hashmap的迭代 [打印本页]

作者: xgm    时间: 2016-3-18 00:39
标题: hashmap的迭代
  1. /**
  2. * HashMap的迭代
  3. * @author Administrator
  4. *
  5. */
  6. public class EntryTest {

  7.         public static void main(String[] args) {
  8.                
  9.                 Map<Integer,String> maps = new HashMap<Integer,String>();
  10.                
  11.                 maps.put(1, "aa");
  12.                 maps.put(2, "bb");
  13.                 maps.put(3, "cc");
  14.                 maps.put(4, "dd");
  15.                
  16.                
  17.                 Set<Map.Entry<Integer,String>> set = maps.entrySet();
  18.                
  19.                 for(Map.Entry<Integer, String> entry:set){
  20.                         System.out.println(entry.getKey()+"===="+entry.getValue());
  21.                 }
  22.                
  23.                 Set<Integer> set1= maps.keySet();
  24.                 for(Integer i:set1){
  25.                         System.out.println(maps.get(i));
  26.                 }
  27.         }
  28. }
复制代码

作者: 就是我    时间: 2016-3-18 11:16
这绝对是水贴
作者: ameanboy    时间: 2016-3-18 12:03
Map迭代的第二种方式,遍历Map.Entry类,但是哪种更快呢,求大神解答
作者: zx7660    时间: 2016-3-18 12:43
不错....




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2