实现方式是通过 putAll() 方法将多个 map 对象中的数据放到另外一个全新的 map 对象中,代码如下所示,展示了两个 map 对象的合并,如果是多个 map 合并也是用这种方式。
public static void main(String[] args) {
Map<String, String> map1 = new HashMap<String, String>();
map1.put("one", "一");
map1.put("two", "二");
map1.put("three", "三");
Map<String, String> map2 = new HashMap<String, String>();
map1.put("ten", "十");
map1.put("nine", "九");
map1.put("eight", "八");
// 合并
Map<String, String> combineResultMap = new HashMap<String, String>();
combineResultMap.putAll(map1);
combineResultMap.putAll(map2);
// 合并后打印出所有内容
for (Map.Entry<String, String> entry : combineResultMap.entrySet()) {
System.out.println(entry.getKey() + ":" + entry.getValue());
}
}
合并后的 map 对象打印结果如下:
nine:九
one:一
ten:十
two:二
three:三
eight:八
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦