📜  Java中的 Hashtable computeIfAbsent() 方法及示例

📅  最后修改于: 2022-05-13 01:55:24.510000             🧑  作者: Mango

Java中的 Hashtable computeIfAbsent() 方法及示例

Hashtable 类computeIfAbsent(Key, 函数)方法允许您计算指定键的映射值,如果键尚未与值关联(或映射为 null)。

  • 如果该方法的映射函数返回null,则不记录映射。
  • 如果重映射函数抛出异常,则重新抛出异常,并记录无映射。
  • 在计算过程中,不允许使用此方法修改此映射。
  • 如果重映射函数在计算期间修改了此映射,则此方法将抛出 ConcurrentModificationException。

句法:

public V 
       computeIfAbsent(K key,
             Function remappingFunction)

参数:此方法接受两个参数:

  • key :与值关联的键。
  • remappingFunction : 对值进行操作的函数。

返回:此方法返回与指定键关联的当前(现有或计算)值,如果映射返回 null ,则返回 null

异常:此方法抛出:

  • ConcurrentModificationException :如果检测到重映射函数修改了此映射。

下面的程序说明了 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 table and add some values
        Map 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}

方案二:

// 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 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: Java 函数 , Java 函数)