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


Java HashMap computeIfPresent()用法及代碼示例


Java HashMap computeIfPresent() 方法計算一個新值並將其與指定的鍵相關聯,如果該鍵已存在於哈希圖中。

用法:

hashmap.computeIfPresent(K key, BiFunction remappingFunction)

這裏,hashmapHashMap 類的對象。

參數:

computeIfPresent() 方法采用 2 個參數:

  • key- 與計算值關聯的鍵
  • remappingFunction- 計算指定的新值的函數鑰匙

注意: 這remappingFunction可以接受兩個參數。因此,被認為是 BiFunction。

返回:

  • 返回新價值與指定的相關聯key
  • 如果沒有與 key 關聯的值,則返回 null

注意: 如果remappingFunction結果null,然後是指定的映射鑰匙已移除。

示例 1:Java HashMap computeIfPresent()

import java.util.HashMap;

class Main {
  public static void main(String[] args) {
    // create an HashMap
    HashMap<String, Integer> prices = new HashMap<>();

    // insert entries to the HashMap
    prices.put("Shoes", 200);
    prices.put("Bag", 300);
    prices.put("Pant", 150);
    System.out.println("HashMap: " + prices);

    // recompute the value of Shoes with 10% VAT
    int shoesPrice = prices.computeIfPresent("Shoes", (key, value) -> value + value * 10/100);
    System.out.println("Price of Shoes after VAT: " + shoesPrice);

    // print updated HashMap
    System.out.println("Updated HashMap: " + prices);
  }
}

輸出

HashMap: {Pant=150, Bag=300, Shoes=200}
Price of Shoes after VAT: 220
Updated HashMap: {Pant=150, Bag=300, Shoes=220}}

在上麵的示例中,我們創建了一個名為 prices 的 hashmap。注意表達式,

prices.computeIfPresent("Shoes", (key, value) -> value + value * 10/100)

這裏,

  • (鍵,值)-> 值 + 值*10/100是一個 lambda 表達式。它計算 Shoes 的新值並返回它。要了解有關 lambda 表達式的更多信息,請訪問Java Lambda 表達式.
  • prices.computeIfPresent()將 lambda 表達式返回的新值與Shoes.這隻是可能的,因為Shoes已經映射到哈希圖中的一個值。

在這裏,lambda 表達式充當重映射函數。而且,它需要兩個參數。

注意: 我們不能使用computeIfPresent()如果鍵不存在於哈希圖中,則方法。

相關用法


注:本文由純淨天空篩選整理自 Java HashMap computeIfPresent()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。