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


Java java.util.WeakHashMap.putAll()用法及代码示例



描述

这个putAll(Map<? extends K,? extends V> m)方法用于将所有映射从指定映射复制到此映射。这些映射将替换此映射对当前在指定映射中的任何键的任何映射。

声明

以下是声明java.util.WeakHashMap.putAll()方法。

public void putAll(Map<? extends K,? extends V> m)

参数

m─ 这是要存储在此映射中的映射。

返回值

NA

异常

NullPointerException- 如果指定的映射为空,则抛出此异常。

示例

下面的例子展示了 java.util.WeakHashMap.putAll() 方法的用法。

package com.tutorialspoint;

import java.util.Map;
import java.util.WeakHashMap;

public class WeakHashMapDemo {
   public static void main(String[] args) { 
      Map<String, String> weakHashMapOne = new WeakHashMap<String, String>();
      Map<String, String> weakHashMapTwo = new WeakHashMap<String, String>();

      // put keys and values in the Map
      System.out.println("Populating two Maps");

      weakHashMapOne.put("1", "first");
      weakHashMapOne.put("2", "two");
      weakHashMapOne.put("3", "three");

      weakHashMapTwo.put("1", "1st");
      weakHashMapTwo.put("2", "2nd");
      weakHashMapTwo.put("3", "3rd");

      // checking Map
      System.out.println("Before - Map 1:"+weakHashMapOne);
      System.out.println("Before - Map 2:"+weakHashMapTwo);

      // putting map 2 into map1
      weakHashMapOne.putAll(weakHashMapTwo);

      System.out.println("After - Map 1:"+weakHashMapOne);
      System.out.println("After - Map 2:"+weakHashMapTwo);
   }     
}

让我们编译并运行上面的程序,这将产生以下结果。

Putting values into the Map
Before - Map 1:{1=first, 2=two, 3=three}
Before - Map 2:{1=1st, 2=2nd, 3=3rd}
After - Map 1:{1=1st, 2=2nd, 3=3rd}
After - Map 2:{1=1st, 2=2nd, 3=3rd}

相关用法


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