怎么在Java8怎么在Map中新增数据
这期内容当中小编将会给大家带来有关怎么在Java8怎么在Map中新增数据,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
putIfAbsent 方法
方法原型 V putIfAbsent(K key, V value)
, 如果 key 不存在或相关联的值为 null, 则设置新的 key/value 值。
参考实现:
Vv=get(key); if(v==null){ v=put(key,value); } returnv;
如果原 map 中对应 key 的值为为 null 返回旧值,或者返回新的 value 值
示例及效果:
Stringret; Map<String,String>map=newHashMap<>(); ret=map.putIfAbsent("a","aaa");//ret为"aaa",map为{"a":"aaa"} ret=map.putIfAbsent("a","bbb");//ret为"aaa",map还是{"a":"aaa"} map.put("b",null); ret=map.putIfAbsent("b","bbb");//ret为"bbb",map为{"a":"aaa","b":"bbb"}
computeIfPresent 方法
方法原型 V computeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction),如果指定的 key 存在并且相关联的 value 不为 null 时,根据旧的 key 和 value 计算 newValue 替换旧值,newValue 为 null 则从 map 中删除该 key; key 不存在或相应的值为 null 时则什么也不做,方法的返回值为最终的 map.get(key)。
参考实现:
if(map.get(key)!=null){ VoldValue=map.get(key); VnewValue=remappingFunction.apply(key,oldValue); if(newValue!=null) map.put(key,newValue); else map.remove(key); }
示例及效果:
Stringret; Map<String,String>map=newHashMap<>(); ret=map.computeIfPresent("a",(key,value)->key+value);//retnull,map为{} map.put("a",null);//map为["a":null] ret=map.computeIfPresent("a",(key,value)->key+value);//retnull,map为{"a":null} map.put("a","+aaa"); ret=map.computeIfPresent("a",(key,value)->key+value);//ret"a+aaa",map为{"a":"a+aaa"} ret=map.computeIfPresent("a",(key,value)->null);//ret为null,map为{},计算出的null把key删除了
计算出的值为 null 时直接删除 key 而不是设置对应 key 的值为 null, 这能照顾到值不能为 null 的 Map 实现,如 Hashtable 和 ConcurrentMap。
computeIfAbsent 方法
方法原型 V computeIfAbsent(K key, Function<? super <, ? extends V> mappingFunction), 与上一个方法相反,如果指定的 key 不存在或相关的 value 为 null 时,设置 key 与关联一个计算出的非 null 值,计算出的值为 null 的话什么也不做(不会去删除相应的 key)。如果 key 存在并且对应 value 为 null 的话什么也不做。同样,方法的返回值也是最终的 map.get(key)。
参考实现:
if(map.get(key)==null){ VnewValue=mappingFunction.apply(key); if(newValue!=null) map.put(key,newValue); }
示例及效果:
Stringret; Map<String,String>map=newHashMap<>(); ret=map.computeIfAbsent("a",key->key+"123");//ret"a123",map为{"a":"a123"} ret=map.computeIfAbsent("a",key->key+"456");//ret"a123",map为{"a":"a123"} map.put("a",null); ret=map.computeIfAbsent("a",key->key+"456");//ret"a456",map为{"a":"a456"} ret=map.computeIfAbsent("a",key->null);//ret为"a456",map为{"a":"a456"}
replace(K key, V value) 方法
只要 key 存在,不管对应值是否为 null,则用传入的 value 替代原来的值。即使传入的 value 是 null 也会用来替代原来的值,而不是删除,注意这对于 value 不能为 null 值的 Map 实现将会造成 NullPointerException。key 不存在不会修改 Map 的内容,返回值总是原始的 map.get(key) 值。
参考实现:
if(map.containsKey(key)){ returnmap.put(key,value); }else returnnull;
示例及效果:
Stringret; Map<String,String>map=newHashMap<>(); ret=map.replace("a","abc");//ret为null,map为{} map.put("a","ddd"); ret=map.replace("a","abc");//ret为"ddd",map为{"a":"abc"} ret=map.replace("a",null);//ret为"abc",map为{"a":null} ret=map.replace("a","ddd");//ret为null,map为{"a":"ddd"}
replace(K key, V oldValue, V newValue)
当且仅当 key 存在,并且对应值与 oldValue 不相等,才用 newValue 作为 key 的新相关联值,返回值为是否进行了替换。
参考实现:
if(map.containsKey(key)&&Objects.equals(map.get(key),value)){ map.put(key,newValue); returntrue; }else returnfalse;
示例及效果:
booleanret; Map<String,String>map=newHashMap<>(); ret=map.replace("a",null,"aaa");//ret为false,map为{} map.put("a",null); ret=map.replace("a",null,"aaa");//ret为true,map为{"a":"aaa"} ret=map.replace("a","aaa",null);//ret为true,map为{"a":null} ret=map.replace("a","aaa","bbb");//ret为false,map为{"a":null}
replaceAll 方法
方法原型 void replaceAll(BiFunction<? super K, ? super V, ? extends V> function)。它更像一个传统函数型语言的 map 函数,即对于 Map 中的每一个元素应用函数 function, 输入为 key 和 value。
参考实现:
for(Map.Entry<K,V>entry:map.entrySet()) entry.setValue(function.apply(entry.getKey(),entry.getValue()));
示例及效果:
Map<String,String>map=newHashMap<>(); map.put("a","aaa"); map.put("b","bbb");//map为{"a":"aaa","b":"bbb"} map.replaceAll((key,value)->key+"-"+value);//map为{"a":"a-aaa","b":"b-bbb"}
remove(key, value)
这个也不用多说,key 与 value 都匹配时才删除。
参考实现:
if(map.containsKey(key)&&Objects.equals(map.get(key),value)){ map.remove(key); returntrue; }else returnfalse;
compute 方法
方法原型 V compute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction), 它是 computeIfAbsent 与 computeIfPresent 的结合体。也就是既不管 key 存不存在,也不管 key 对应的值是否为 null, compute 死活都要设置与 key 相关联的值,或者计算出的值为 null 时删除相应的 key, 返回值为最终的 map.get(key)。
参考实现:
VoldValue=map.get(key); VnewValue=remappingFunction.apply(key,oldValue); if(oldValue!=null){ if(newValue!=null) map.put(key,newValue); else map.remove(key); }else{ if(newValue!=null) map.put(key,newValue); else returnnull; }
示例及效果:
Stringret; Map<String,String>map=newHashMap<>(); ret=map.compute("a",(key,value)->"a"+value);//ret="anull",map={"a":"anull"} ret=map.compute("a",(key,value)->"a"+value);//ret="aanull",map={"a":"aanull"} ret=map.compute("a",(key,value)->null);//ret=null,map={}
merge 方法
方法原型 V merge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFucntion),这是至今来说比较神秘的一个方法,尚未使用到它。如果指定的 key 不存在,或相应的值为 null 时,则设置 value 为相关联的值。否则根据 key 对应的旧值和 value 计算出新的值 newValue,newValue 为 null 时,删除该key, 否则设置 key 对应的值为 newValue。方法的返回值也是最终的 map.get(key) 值。
参考实现:
VoldValue=map.get(key); VnewValue=(oldValue==null)?value: remappingFunction.apply(oldValue,value); if(newValue==null) map.remove(key); else map.put(key,newValue);
注意 value 不能为 null 值
示例及效果:
Stringret; Map<String,String>map=newHashMap<>(); ret=map.merge("a","aa",(oldValue,value)->oldValue+"-"+value);//ret="aa",map={"a":"aa"} ret=map.merge("a","bb",(oldValue,value)->oldValue+"-"+value);//ret="aa-bb",map={"a":"aa-bb"} ret=map.merge("a","bb",(oldValue,value)->null);//ret=null,map={} map.put("a",null); ret=map.merge("a","aa",(oldValue,value)->oldValue+"-"+value);//ret="aa",map={"a":"aa"} map.put("a",null); ret=map.merge("a","bb",(oldValue,value)->null);//ret="bb",map={"a":"bb"} ret=map.merge("a",null,(oldValue,value)->oldValue+"-"+value);//NullPointerException,value不能为null
Map.Entry comparingByKey 和 comparingByValue 方法
另外介绍一下 Map.Entry 新加的两个排序方法,它们分别有无参与带 Comparator 参数可嵌套使用的两个版本。comparingByKey(), comparingByKey(Comparator<? super K> cmp), comparingByValue() 和 comparingByValue(Comparator<? super V> cmp)。
示例代码如下:
map.entrySet().stream().sorted(Map.Entry.comparingByKey()).collect(Collectors.toList()); map.entrySet().stream().sorted(Map.Entry.comparingByKey(String::compareTo)).collect(Collectors.toList()); map.entrySet().stream().sorted(Map.Entry.comparingByValue()).collect(Collectors.toList()); map.entrySet().stream().sorted(Map.Entry.comparingByValue(String::compareTo)).collect(Collectors.toList());
上述就是小编为大家分享的怎么在Java8怎么在Map中新增数据了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注恰卡编程网行业资讯频道。
推荐阅读
-
Java8中怎么正确高效的使用并行流
-
Java8如何使用CompletableFuture构建异步应用方式
-
基于Java8并行流有哪些需要注意的地方
这篇文章主要介绍了基于Java8并行流有哪些需要注意的地方,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大...
-
Java8中怎么将Array转换为Stream
本篇文章给大家分享的是有关Java8中怎么将Array转换为Stream,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇...
-
Java8中有哪些常用的时间api
这篇文章给大家介绍Java8中有哪些常用的时间api,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。Insta...
-
如何在Java 8中引入lambda表达式
本篇文章给大家分享的是有关如何在Java8中引入lambda表达式,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章...
-
怎么在java8项目中对List对象属性去重
怎么在java8项目中对List对象属性去重?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面...
-
怎么在Java8中给forEach()函数提供index值
怎么在Java8中给forEach()函数提供index值?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细...
-
DateTimeFormatter与SimpleDateFormat在Java8中有什么区别
今天就跟大家聊聊有关DateTimeFormatter与SimpleDateFormat在Java8中有什么区别,可能很多人都不太...
-
Java8中groupBy实现集合的分组
这篇文章主要介绍Java8中groupBy实现集合的分组,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!场景...