Java中的 HashMap computeIfAbsent() 方法及示例
HashMap 类的computeIfAbsent(Key, 函数)方法用于使用给定的映射函数计算给定键的值,如果键尚未与值关联(或映射为 null)并在 Hashmap 中输入该计算值空值。
- 如果此方法的映射函数返回 null,则不记录该键的映射。
- 在计算时,如果重映射函数抛出异常,则重新抛出异常,并记录无映射。
- 在计算过程中,不允许使用此方法修改此映射。
- 如果重映射函数在计算期间修改了此映射,则此方法将抛出 ConcurrentModificationException。
句法:
public V
computeIfAbsent(K key,
Function super K, ? extends V> remappingFunction)
参数:此方法接受两个参数:
- key :我们要使用映射为其计算值的键。
- remappingFunction : 对值进行操作的函数。
返回:此方法返回与指定键关联的当前(现有或计算)值,如果映射返回 null ,则返回 null 。
下面的程序说明了 computeIfAbsent(Key, 函数 ) 方法:
方案一:
// Java program to demonstrate
// computeIfAbsent(Key, Function) method.
import java.util.*;
public class GFG {
// Main method
public static void main(String[] args)
{
// create a HashMap and add some values
HashMap map
= new HashMap<>();
map.put("key1", 10000);
map.put("key2", 55000);
map.put("key3", 44300);
map.put("key4", 53200);
// print map details
System.out.println("HashMap:\n "
+ map.toString());
// provide value for new key which is absent
// using computeIfAbsent method
map.computeIfAbsent("key5",
k -> 2000 + 33000);
map.computeIfAbsent("key6",
k -> 2000 * 34);
// print new mapping
System.out.println("New HashMap:\n "
+ map);
}
}
输出:
HashMap:
{key1=10000, key2=55000, key3=44300, key4=53200}
New HashMap:
{key1=10000, key2=55000, key5=35000, key6=68000, key3=44300, key4=53200}
方案二:
// Java program to demonstrate
// computeIfAbsent(Key, Function) method.
import java.util.*;
public class GFG {
// Main method
public static void main(String[] args)
{
// create a HashMap and add some values
HashMap
map = new HashMap<>();
map.put(10, "Aman");
map.put(20, "Suraj");
map.put(30, "Harsh");
// print map details
System.out.println("HashMap:\n"
+ map.toString());
// provide value for new key which is absent
// using computeIfAbsent method
map.computeIfAbsent(40, k -> "Sanjeet");
// this will not effect anything
// because key 1 is present
map.computeIfAbsent(10, k -> "Amarjit");
// print new mapping
System.out.println("New HashMap:\n" + map);
}
}
输出:
HashMap:
{20=Suraj, 10=Aman, 30=Harsh}
New HashMap:
{20=Suraj, 40=Sanjeet, 10=Aman, 30=Harsh}
参考:https://docs.oracle.com/javase/10/docs/api/java 函数 , Java Java 函数 )