首页 > 代码库 > Java面试题
Java面试题
两个map,循环一次取出key,value都相等的交集
Map<String, String> map1 = new HashMap<>();
map1.put("test1", "test");
map1.put("test2", "test2");
map1.put("test3", "test3");
map1.put("test4", "test4");
map1.put("test5", "test");
System.out.println("mp1:" + map1);
Map<String, String> map2 = new HashMap<>();
map2.put("test6", "test6");
map2.put("test1", "test7");
map2.put("test8", "test8");
map2.put("test4", "test");
map2.put("test5", "test");
map2.put("test9", "test1");
System.out.println("mp2:" + map2);
Map<String, String> map3 = new HashMap<>();
Iterator iteratorTemp = map1.entrySet().iterator();
while (iteratorTemp.hasNext()) {
Map.Entry entry = (Entry) iteratorTemp.next();
System.out.println(entry);
if (map2.containsKey(entry.getKey())
&& entry.getValue().equals(map2.get(entry.getKey()))) {
map3.put((String) entry.getKey(), (String) entry.getValue());
}
}
System.out.println("一次循环map1和map2的交集为:" + map3);
Java面试题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。