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


Java Properties computeIfPresent(Key, BiFunction)用法及代碼示例


Properties類的computeIfPresent(Key,BiFunction)方法,如果key已經與某個值關聯(或映射為null),則可以使用該方法為指定的key計算映射值。

  • 如果此方法的映射函數返回null,則將刪除該映射。
  • 如果重新映射函數引發異常,則重新引發該異常,並且映射保持不變。
  • 在計算過程中,不允許使用此方法修改此Map。
  • 如果重新映射函數在計算過程中修改了此映射,則此方法將引發ConcurrentModificationException。

用法:

public Object computeIfPresent?(Object key,
                              BiFunction remappingFunction)

參數:此方法接受兩個參數:


  • key與值關聯的:key。
  • remappingFunction:function對值進行運算。

返回值:此方法返回與指定鍵關聯的新的重新映射的值;如果映射返回null,則返回null。

異常:如果檢測到重新映射函數修改了此映射,則此方法將引發ConcurrentModificationException。

以下示例程序旨在說明computeIfPresent(Key,BiFunction)方法:

程序1:

// Java program to demonstrate 
// computeIfPresent(Key, BiFunction) method. 
  
import java.util.*; 
  
public class GFG { 
  
    // Main method 
    public static void main(String[] args) 
    { 
  
        // Create a properties and add some values 
        Properties properties = new Properties(); 
        properties.put("Pen", 10); 
        properties.put("Book", 500); 
        properties.put("Clothes", 400); 
        properties.put("Mobile", 5000); 
  
        // print Properties details 
        System.out.println("Current Properties:"
                           + properties.toString()); 
  
        // provide new value for keys which is present 
        // using computeIfPresent method 
        properties.computeIfPresent("Pen", (key, val) 
                                               -> 600); 
        properties.computeIfPresent("Book", (key, val) 
                                                -> 800); 
  
        // print new mapping 
        System.out.println("New Properties:"
                           + properties.toString()); 
    } 
}
輸出:
Current Properties:{Book=500, Mobile=5000, Pen=10, Clothes=400}
New Properties:{Book=800, Mobile=5000, Pen=600, Clothes=400}

程序2:

// Java program to demonstrate 
// computeIfPresent(Key, BiFunction) method. 
  
import java.util.*; 
  
public class GFG { 
  
    // Main method 
    public static void main(String[] args) 
    { 
  
        // Create a properties and add some values 
        Properties properties = new Properties(); 
  
        properties.put(1, "100RS"); 
        properties.put(2, "500RS"); 
        properties.put(3, "1000RS"); 
  
        // print Properties details 
        System.out.println("Current Properties:"
                           + properties.toString()); 
  
        // provide new value for key which is present 
        // using computeIfPresent method 
        properties.computeIfPresent(3, (key, val) 
                                           -> "00RS"); 
  
        // this will not effect anything 
        // because key 4 is absent 
        properties.computeIfPresent(4, (key, val) 
                                           -> "$"); 
  
        // print new mapping 
        System.out.println("New Properties:"
                           + properties.toString()); 
    } 
}
輸出:
Current Properties:{3=1000RS, 2=500RS, 1=100RS}
New Properties:{3=00RS, 2=500RS, 1=100RS}

參考:https://docs.oracle.com/javase/9​​/docs/api/java/util/Properties.html#computeIfPresent-java.lang.Object-java.util.function.BiFunction-



相關用法


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