Hashtable类的computeIfAbsent(Key,Function)方法,如果key尚未与某个值关联(或映射为null),则该方法允许您为指定的key计算映射值。
- 如果此方法的映射函数返回null,则不记录任何映射。
- 如果重新映射函数引发异常,则重新引发该异常,并且不记录任何映射。
- 在计算过程中,不允许使用此方法修改此Map。
- 如果重新映射函数在计算过程中修改了此映射,则此方法将引发ConcurrentModificationException。
用法:
public V computeIfAbsent(K key, Function<? super K, ? extends V> remappingFunction)
参数:此方法接受两个参数:
- key:与值关联的键。
- remappingFunction:用于对值进行运算的函数。
返回值:此方法返回与指定键关联的当前(现有的或计算的)值;如果映射返回null,则返回null。
异常:该方法抛出:
- ConcurrentModificationException:如果检测到重新映射函数修改了此Map。
以下示例程序旨在说明computeIfAbsent(Key,Function)方法:
示例1:
// Java program to demonstrate
// computeIfAbsent(Key, Function) method.
import java.util.*;
public class GFG {
// Main method
public static void main(String[] args)
{
// create a table and add some values
Map<String, Integer> table = new Hashtable<>();
table.put("Pen", 10);
table.put("Book", 500);
table.put("Clothes", 400);
table.put("Mobile", 5000);
// print map details
System.out.println("hashTable: "
+ table.toString());
// provide value for new key which is absent
// using computeIfAbsent method
table.computeIfAbsent("newPen", k -> 600);
table.computeIfAbsent("newBook", k -> 800);
// print new mapping
System.out.println("new hashTable: "
+ table);
}
}
输出:
hashTable: {Book=500, Mobile=5000, Pen=10, Clothes=400} new hashTable: {newPen=600, Book=500, newBook=800, Mobile=5000, Pen=10, Clothes=400}
示例2:
// Java program to demonstrate
// computeIfAbsent(Key, Function) method.
import java.util.*;
public class GFG {
// Main method
public static void main(String[] args)
{
// create a table and add some values
Map<Integer, String> table = new Hashtable<>();
table.put(1, "100RS");
table.put(2, "500RS");
table.put(3, "1000RS");
// print map details
System.out.println("hashTable: "
+ table.toString());
// provide value for new key which is absent
// using computeIfAbsent method
table.computeIfAbsent(4, k -> "600RS");
// this will not effect anything
// because key 1 is present
table.computeIfAbsent(1, k -> "800RS");
// print new mapping
System.out.println("new hashTable: "
+ table);
}
}
输出:
hashTable: {3=1000RS, 2=500RS, 1=100RS} new hashTable: {4=600RS, 3=1000RS, 2=500RS, 1=100RS}
参考:https://docs.oracle.com/javase/10/docs/api/java/util/Hashtable.html#computeIfAbsent(K,java.util.function.Function)
相关用法
- Java ConcurrentHashMap computeIfAbsent()用法及代码示例
- Java HashMap computeIfAbsent()用法及代码示例
- Java Properties computeIfAbsent(Key, Function)用法及代码示例
- Java HashTable forEach()用法及代码示例
- Java HashTable putIfAbsent()用法及代码示例
- Java HashTable compute()用法及代码示例
- Java Hashtable get()用法及代码示例
- Java Hashtable contains()用法及代码示例
- Java Hashtable put()用法及代码示例
- Java Hashtable clone()用法及代码示例
- Java Hashtable keys()用法及代码示例
- Java Hashtable containsValue()用法及代码示例
- Java Hashtable containsKey()用法及代码示例
- Java Hashtable elements()用法及代码示例
- Java Hashtable toString()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Hashtable computeIfAbsent() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。