在Java中,合并两个Map可以使用putAll()方法,但是默认情况下,如果被合并的Map中有null值,它们会被丢弃。
如果想要保留null值,可以使用下面的代码:
public static <K, V> Map<K, V> mergeMaps(Map<K, V> map1, Map<K, V> map2) {
Map<K, V> result = new HashMap<>(map1);
for (Map.Entry<K, V> entry : map2.entrySet()) {
K key = entry.getKey();
V value = entry.getValue();
if (value != null) {
result.put(key, value);
} else if (!result.containsKey(key)) {
result.put(key, null);
}
}
return result;
}
这里将两个Map合并成一个新的Map,如果被合并的Map中的value有null,会被保留在新的Map中。
示例:文章来源:https://www.toymoban.com/news/detail-516587.html
Map<String, String> map1 = new HashMap<>();
map1.put("a", "1");
map1.put("b", null);
map1.put("c", "3");
Map<String, String> map2 = new HashMap<>();
map2.put("b", "2");
map2.put("c", null);
map2.put("d", "4");
Map<String, String> result = mergeMaps(map1, map2);
System.out.println(result); // {a=1, b=null, c=null, d=4}
输出结果中,被合并的Map中的value为null的键值对被保留了下来。文章来源地址https://www.toymoban.com/news/detail-516587.html
到了这里,关于Java中,合并两个Map的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!