当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java HashMap compute()用法及代码示例


Java HashMap compute() 方法计算一个新值并将其与哈希图中的指定键相关联。

用法:

hashmap.compute(K key, BiFunction remappingFunction)

这里,hashmapHashMap 类的对象。

参数:

compute() 方法采用 2 个参数:

  • key- 与计算值关联的键
  • remappingFunction- 计算指定的新值的函数钥匙

注意: 这remappingFunction可以接受两个参数。因此,视为BiFunction.

返回:

  • 返回新价值key
  • 如果没有与 key 关联的值,则返回 null

注意: 如果remappingFunction结果null,然后是指定的映射钥匙已移除。

示例:HashMap compute() 插入新值

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% discount
    int newPrice = prices.compute("Shoes", (key, value) -> value - value * 10/100);
    System.out.println("Discounted Price of Shoes: " + newPrice);

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

输出

HashMap: {Pant=150, Bag=300, Shoes=200}
Discounted Price of Shoes: 180
Updated HashMap: {Pant=150, Bag=300, Shoes=180

在上面的示例中,我们创建了一个名为 prices 的 hashmap。注意表达式,

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

这里,

  • (键,值)-> 值-值 * 10/100- 这是一个 lambda 表达式。它降低了旧值Shoes经过10%并返回它。要了解有关 lambda 表达式的更多信息,请访问Java Lambda 表达式.
  • prices.compute()- 将 lambda 表达式返回的新值与映射相关联Shoes.

我们已经使用 lambda 表达式作为重新映射函数,它可以获取两个参数。

注意:根据Java的官方文档,HashMap merge方法比较简单compute()方法。

相关用法


注:本文由纯净天空筛选整理自 Java HashMap compute()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。