首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

java 迭代hashmap有几种

发布网友 发布时间:2022-04-24 00:37

我来回答

2个回答

热心网友 时间:2023-10-15 20:37

HashMap<String, String> emails = new HashMap<String, String>();  
//方法一: 用entrySet()  
Iterator it = emails.entrySet().iterator();  
while(it.hasNext()){  
   Map.Entry m=(Map.Entry)it.next();  
   System.out.println("email-" + m.getKey() + ":" + m.getValue());  
}  
// 方法二:直接再循环中  
for (Map.Entry<String, String> m : emails.entrySet()) {  
  System.out.println("email-" + m.getKey() + ":" + m.getValue());  
}  
// 方法三:用keySet()  
Iterator it = emails.keySet().iterator();  
while (it.hasNext()){  
  String key=(String)it.next();  
  System.out.println("email-" + key + ":" + emails.get(key));
}

热心网友 时间:2023-10-15 20:38

emails.forEach((k, v)->System.out.println(k +" : "+v);

热心网友 时间:2023-10-15 20:37

HashMap<String, String> emails = new HashMap<String, String>();  
//方法一: 用entrySet()  
Iterator it = emails.entrySet().iterator();  
while(it.hasNext()){  
   Map.Entry m=(Map.Entry)it.next();  
   System.out.println("email-" + m.getKey() + ":" + m.getValue());  
}  
// 方法二:直接再循环中  
for (Map.Entry<String, String> m : emails.entrySet()) {  
  System.out.println("email-" + m.getKey() + ":" + m.getValue());  
}  
// 方法三:用keySet()  
Iterator it = emails.keySet().iterator();  
while (it.hasNext()){  
  String key=(String)it.next();  
  System.out.println("email-" + key + ":" + emails.get(key));
}

热心网友 时间:2023-10-15 20:38

emails.forEach((k, v)->System.out.println(k +" : "+v);

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com