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


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


HashMap类的computeIfAbsent(Key,Function)方法用于使用给定的映射函数来计算给定键的值(如果键尚未与某个值关联(或映射为null),然后在Hashmap中输入该计算值)空值。

  • 如果此方法的映射函数返回null,则不会为该键记录任何映射。
  • 在计算时,如果重新映射函数引发异常,则重新引发该异常,并且不记录任何映射。
  • 在计算过程中,不允许使用此方法修改此Map。
  • 如果重新映射函数在计算过程中修改了此映射,则此方法将引发ConcurrentModificationException。

用法:

public V 
       computeIfAbsent(K key,
             Function<? super K, ? extends V> remappingFunction)

参数:此方法接受两个参数:


  • key:我们要使用映射为其计算值的键。
  • remappingFunction:用于对值进行运算的函数。

返回值:此方法返回与指定键关联的当前(现有的或计算的)值;如果映射返回null,则返回null。

以下示例程序旨在说明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 HashMap and add some values 
        HashMap<String, Integer> map 
            = new HashMap<>(); 
        map.put("key1", 10000); 
        map.put("key2", 55000); 
        map.put("key3", 44300); 
        map.put("key4", 53200); 
  
        // print map details 
        System.out.println("HashMap:\n "
                           + map.toString()); 
  
        // provide value for new key which is absent 
        // using computeIfAbsent method 
        map.computeIfAbsent("key5", 
                            k -> 2000 + 33000); 
        map.computeIfAbsent("key6", 
                            k -> 2000 * 34); 
  
        // print new mapping 
        System.out.println("New HashMap:\n "
                           + map); 
    } 
}
输出:
HashMap:
 {key1=10000, key2=55000, key3=44300, key4=53200}
New HashMap:
 {key1=10000, key2=55000, key5=35000, key6=68000, key3=44300, key4=53200}

示例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 HashMap and add some values 
        HashMap<Integer, String> 
            map = new HashMap<>(); 
        map.put(10, "Aman"); 
        map.put(20, "Suraj"); 
        map.put(30, "Harsh"); 
  
        // print map details 
        System.out.println("HashMap:\n"
                           + map.toString()); 
  
        // provide value for new key which is absent 
        // using computeIfAbsent method 
        map.computeIfAbsent(40, k -> "Sanjeet"); 
  
        // this will not effect anything 
        // because key 1 is present 
        map.computeIfAbsent(10, k -> "Amarjit"); 
  
        // print new mapping 
        System.out.println("New HashMap:\n" + map); 
    } 
}
输出:
HashMap:
{20=Suraj, 10=Aman, 30=Harsh}
New HashMap:
{20=Suraj, 40=Sanjeet, 10=Aman, 30=Harsh}

参考:https://docs.oracle.com/javase/10/docs/api/java/util/HashMap.html#computeIfAbsent(K,java.util.function.Function)



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 HashMap computeIfAbsent() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。