- Java.util 包类
- Java.util - 首页
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util 包补充
- Java.util - 接口
- Java.util - 异常
- Java.util - 枚举
- Java.util 有用资源
- Java.util - 有用资源
- Java.util - 讨论
Java HashMap computeIfAbsent() 方法
描述
Java HashMap computeIfAbsent() 方法用于计算指定键的映射(如果指定的键尚未与值关联(或映射到 null)),使用给定的映射函数并将它放入此映射中,除非为 null。
声明
以下是java.util.HashMap.computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction) 方法的声明。
public V computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
参数
key − 与指定值关联的键
remappingFunction − 用于计算值的重新映射函数
返回值
方法调用返回与指定键关联的新值,如果没有则返回 null。
异常
ConcurrentModificationException − 如果检测到重新映射函数修改了此映射。
HashMap 的 Integer, Integer 对的未映射键的计算映射示例
以下示例演示了 Java HashMap computeIfAbsent() 方法的使用,以获取 Map 的更新值。我们创建了两个 Integer,Integer 对的 Map 对象。然后向映射中添加了一些条目,然后使用 computeIfAbsent 方法更新值,最后打印更新后的映射。
package com.tutorialspoint; import java.util.HashMap; public class HashMapDemo { public static void main(String args[]) { // create two hash maps HashMap<Integer, Integer> newmap = new HashMap<>(); // populate map newmap.put(1, 1); newmap.put(3, 3); // print the map System.out.println("Map: " + newmap); // update the values of the map newmap.computeIfAbsent(2, (key) -> key); System.out.println("Updated Map: " + newmap); } }
输出
让我们编译并运行上述程序,这将产生以下结果。
Map: {1=1, 3=3} Updated Map: {1=1, 2=2, 3=3}
HashMap 的 Integer, String 对的未映射键的计算映射示例
以下示例演示了 Java HashMap computeIfAbsent() 方法的使用,以获取 Map 的更新值。我们创建了两个 Integer,String 对的 Map 对象。然后向映射中添加了一些条目,然后使用 computeIfAbsent() 方法更新值,最后打印更新后的映射。
package com.tutorialspoint; import java.util.HashMap; public class HashMapDemo { public static void main(String args[]) { // create two hash maps HashMap<Integer, String> newmap = new HashMap<>(); // populate map newmap.put(1, "A"); newmap.put(3, "C"); // print the map System.out.println("Map: " + newmap); // update the values of the map newmap.computeIfAbsent(2, (key) -> {return "B";}); System.out.println("Updated Map: " + newmap); } }
输出
让我们编译并运行上述程序,这将产生以下结果。
Map: {1=A, 3=C} Updated Map: {1=A, 2=B, 3=C}
HashMap 的 Integer, Student 对的未映射键的计算映射示例
以下示例演示了 Java HashMap computeIfAbsent() 方法的使用,以获取 Map 的更新值。我们创建了两个 Integer,Student 对的 Map 对象。然后向映射中添加了一些条目,然后使用 computeIfAbsent() 方法更新值,最后打印更新后的映射。
package com.tutorialspoint; import java.util.HashMap; public class HashMapDemo { public static void main(String args[]) { // create two hash maps HashMap<Integer, Student> newmap = new HashMap<>(); // populate map newmap.put(1, new Student(1, "Julie")); newmap.put(3, new Student(3, "Adam")); // print the map System.out.println("Map: " + newmap); // update the values of the map newmap.computeIfAbsent(2, (key) -> {return new Student(2, "Robert");}); System.out.println("Updated Map: " + newmap); } } class Student { int rollNo; String name; Student(int rollNo, String name){ this.rollNo = rollNo; this.name = name; } public Student update(String surname) { this.name = this.name.concat(" " + surname); return this; } @Override public String toString() { return "[ " + this.rollNo + ", " + this.name + " ]"; } }
输出
让我们编译并运行上述程序,这将产生以下结果。
Map: {1=[ 1, Julie ], 3=[ 3, Adam ]} Updated Map: {1=[ 1, Julie ], 2=[ 2, Robert ], 3=[ 3, Adam ]}