當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Hashtable computeIfAbsent()用法及代碼示例


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)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Hashtable computeIfAbsent() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。