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


Java HashMap merge(key, value, BiFunction)用法及代码示例


HashMap类的merge(Key,Value,BiFunctional)方法用于使用给定的映射函数组合一个键的多个映射值。 Bucket实际上是数组的索引,该数组在HashMap实现中称为表。因此,表[0]被称为bucket0,表[1]被称为bucket1,依此类推。

  • 如果键不存在或与null关联,则仅将键以及Hashmap中的相应值作为新条目输出。
  • 但是,如果键已经具有某个值,则“重新映射函数”会将旧值和新值都与给定键合并
  • 如果key为null,则始终将其映射到存储区0,因为由于NullPointerException而没有为null键计算哈希

用法:

public V merge(K key, V value,
    BiFunction remappingFunction)

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


  • Key:这是我们具有特殊价值的关键。如果两个键的值相同,则将它们合并。
  • Value:它是与存储在存储桶中的特定键相对应的索引。
  • BiFunction:这是具有两个自变量的函数,用于根据旧值和给定值计算新映射。

返回值:如果键不存在或与null关联,则此方法返回键及其值。否则,如果键已经具有任何值,它将使用映射技术将旧值与新值合并。

以下示例程序旨在说明merge(Key,Value,BiFunctional)方法:

程序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<Integer, String> 
            map1 = new HashMap<>(); 
        map1.put(1, "L"); 
        map1.put(2, "M"); 
        map1.put(3, "N"); 
  
        HashMap<Integer, String> 
            map2 = new HashMap<>(); 
        map2.put(1, "B"); 
        map2.put(2, "G"); 
        map2.put(3, "R"); 
  
        // print map details 
        System.out.println("HashMap1:"
                           + map1.toString()); 
  
        System.out.println("HashMap2:"
                           + map2.toString()); 
  
        // provide value for new key which is absent 
        // using computeIfAbsent method 
        map2.forEach( 
            (key, value) 
                -> map1.merge( 
                    key, 
                    value, 
                    (v1, v2) 
                        -> v1.equalsIgnoreCase(v2) 
                               ? v1 
                               :v1 + ", " + v2)); 
  
        // print new mapping 
        System.out.println("New HashMap:" + map1); 
    } 
}
输出:
HashMap1:{1=L, 2=M, 3=N}
HashMap2:{1=B, 2=G, 3=R}
New HashMap:{1=L, B, 2=M, G, 3=N, R}

程序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> 
            map1 = new HashMap<>(); 
        map1.put(1, "Ram"); 
        map1.put(2, "Rohan"); 
        map1.put(3, "Shivam"); 
  
        HashMap<Integer, String> 
            map2 = new HashMap<>(); 
        map2.put(1, "Tushar"); 
        map2.put(10, "Satya"); 
        map2.put(12, "Sundar"); 
  
        // print map details 
        System.out.println("HashMap1:"
                           + map1.toString()); 
  
        System.out.println("HashMap2:"
                           + map2.toString()); 
  
        // provide value for new key which is absent 
        // using computeIfAbsent method 
        map2.forEach( 
            (key, value) 
                -> map1.merge( 
                    key, 
                    value, 
                    (v1, v2) 
                        -> v1.equalsIgnoreCase(v2) 
                               ? v1 
                               :v1 + ", " + v2)); 
  
        // print new mapping 
        System.out.println("New HashMap:" + map1); 
    } 
}
输出:
HashMap1:{1=Ram, 2=Rohan, 3=Shivam}
HashMap2:{1=Tushar, 10=Satya, 12=Sundar}
New HashMap:{1=Ram, Tushar, 2=Rohan, 3=Shivam, 10=Satya, 12=Sundar}

参考文献: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#merge-K-V-java.util.function.BiFunction-



相关用法


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