Java並行ConcurrentMap介面


java.util.concurrent.ConcurrentMap介面是Map介面的子介面,支援底層Map變數上的原子操作。 它具有獲取和設定方法,如在變數上的讀取和寫入。 也就是說,一個集合與同一變數上的任何後續讀取相關聯。 該介面確保執行緒安全性和原子性保證。

ConcurrentMap介面中的方法

序號 方法 描述
1 default V compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction) 嘗試計算指定鍵及其當前對映值的對映(如果沒有當前對映,則為null)。
2 default V computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction) 如果指定的鍵尚未與值相關聯(或對映到null),則嘗試使用給定的對映函式計算其值,並將其輸入到此對映中,除非為null
3 default V computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction) 如果指定鍵的值存在且非空,則嘗試計算給定鍵及其當前對映值的新對映。
4 default void forEach(BiConsumer<? super K,? super V> action) 對此對映中的每個條目執行給定的操作,直到所有條目都被處理或操作引發異常。
5 default V getOrDefault(Object key, V defaultValue) 返回指定鍵對映到的值,如果此對映不包含該鍵的對映,則返回defaultValue
6 default V merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction) 如果指定的鍵尚未與值相關聯或與null相關聯,則將其與給定的非空值相關聯。
7 V putIfAbsent(K key, V value) 如果指定的鍵尚未與值相關聯,請將其與給定值相關聯。
8 boolean remove(Object key, Object value) 僅當當前對映到給定值時才刪除鍵的條目。
9 V replace(K key, V value) 僅當當前對映到某個值時才替換該項的條目。
10 boolean replace(K key, V oldValue, V newValue) 僅當當前對映到給定值時才替換鍵的條目。
11 default void replaceAll(BiFunction<? super K,? super V,? extends V> function) 將每個條目的值替換為對該條目呼叫給定函式的結果,直到所有條目都被處理或該函式丟擲異常。

範例

以下TestThread程式顯示了基於執行緒的環境中ConcurrentMap介面的使用。

import java.util.ConcurrentModificationException;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

public class TestThread {

   public static void main(final String[] arguments){

      Map<String,String> map = new ConcurrentHashMap<String, String>();

      map.put("1", "One");
      map.put("2", "Two");
      map.put("3", "Three");
      map.put("5", "Five");
      map.put("6", "Six");

      System.out.println("Initial ConcurrentHashMap: "+map);
      Iterator<String> iterator = map.keySet().iterator();

      try{ 
         while(iterator.hasNext()){
            String key = iterator.next();
            if(key.equals("3")) {
               map.put("4", "Four");
            }
         }
      }catch(ConcurrentModificationException cme){
         cme.printStackTrace();
      }
      System.out.println("ConcurrentHashMap after modification: "+map);

      map = new HashMap<String, String>();

      map.put("1", "One");
      map.put("2", "Two");
      map.put("3", "Three");
      map.put("5", "Five");
      map.put("6", "Six");

      System.out.println("Initial HashMap: "+map);
      iterator = map.keySet().iterator();

      try{
         while(iterator.hasNext()){
            String key = iterator.next();
            if(key.equals("3")) { 
               map.put("4", "Four");
            }
         }
         System.out.println("HashMap after modification: "+map);
      }catch(ConcurrentModificationException cme){
         cme.printStackTrace();
      }
   }  
}

這將產生以下結果 -

Initial ConcurrentHashMap: {1=One, 2=Two, 3=Three, 5=Five, 6=Six}
ConcurrentHashMap after modification: {1=One, 2=Two, 3=Three, 4=Four, 5=Five, 6=Six}
Initial HashMap: {1=One, 2=Two, 3=Three, 5=Five, 6=Six}
java.util.ConcurrentModificationException
    at java.util.HashMap$HashIterator.nextNode(Unknown Source)
    at java.util.HashMap$KeyIterator.next(Unknown Source)
    at TestThread.main(TestThread.java:48)