您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“jdk1.8中map的compute,computeIfAbsent,computeIfPresent方法怎么用”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“jdk1.8中map的compute,computeIfAbsent,computeIfPresent方法怎么用”這篇文章吧。
compute:V compute(K key, BiFunction < ? super K, ? super V, ? extends V> remappingFunction)
compute的方法,指定的key在map中的值進行操作 不管存不存在,操作完成后保存到map中
HashMap<String,Integer> map = new HashMap<>(); map.put("1",1); map.put("2",2); map.put("3",3); Integer integer = map.compute("3", (k,v) -> v+1 ); //key不管存在不在都會執行后面的函數,并保存到map中 Integer integer1 = map.compute("4", (k,v) -> { if (v==null)return 0; return v+1; } ); System.out.println(integer); System.out.println(integer1); System.out.println(map.toString()); 打印結果 4 0 {1=1, 2=2, 3=4, 4=0}
computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction)
computeIfAbsent的方法有兩個參數 第一個是所選map的key,第二個是需要做的操作。這個方法當key值不存在時才起作用。
當key存在返回當前value值,不存在執行函數并保存到map中
HashMap<String,Integer> map = new HashMap<>(); map.put("1",1); map.put("2",2); map.put("3",3); Integer integer = map.computeIfAbsent("3", key -> new Integer(4));//key存在返回value Integer integer1 = map.computeIfAbsent("4", key -> new Integer(4));//key不存在執行函數存入 System.out.println(integer); System.out.println(integer1); System.out.println(map.toString()); 打印結果 3 4 {1=1, 2=2, 3=3, 4=4}
computeIfPresent:V computeIfPresent(K key, BiFunction < ? super K, ? super V, ? extends V> remappingFunction)
computeIfPresent 的方法,對 指定的 在map中已經存在的key的value進行操作。只對已經存在key的進行操作,其他不操作
HashMap<String,Integer> map = new HashMap<>(); map.put("1",1); map.put("2",2); map.put("3",3); //只對map中存在的key對應的value進行操作 Integer integer = map.computeIfPresent("3", (k,v) -> v+1 ); Integer integer1 = map.computeIfPresent("4", (k,v) -> { if (v==null)return 0; return v+1; } ); System.out.println(integer); System.out.println(integer1); System.out.println(map.toString()); 打印結果 4 null {1=1, 2=2, 3=4}
以上是“jdk1.8中map的compute,computeIfAbsent,computeIfPresent方法怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。