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


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



描述

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

声明

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

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

参数

map- 这是要存储在此映射中的映射。

返回值

NA

异常

  • ClassCastException- 如果指定映射中的键或值的类阻止其存储在此映射中,则抛出此异常。

  • NullPointerException− 如果指定映射为空或指定映射包含空键且此映射不允许空键,则抛出此异常。

示例

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

package com.tutorialspoint;

import java.util.*;

public class TreeMapDemo {
   public static void main(String[] args) {

      // creating tree maps 
      TreeMap<Integer, String> treemap = new TreeMap<Integer, String>();
      TreeMap<Integer, String> treemap_putall = new TreeMap<Integer, String>();

      // populating tree map
      treemap.put(2, "two");
      treemap.put(1, "one");
      treemap.put(3, "three");
      treemap.put(6, "six");
      treemap.put(5, "five");

      treemap_putall.put(1, "111"); 
      treemap_putall.put(2, "222");
      treemap_putall.put(7, "777");      

      System.out.println("Value before modification:"+ treemap);

      // Putting 2nd map in 1st map
      treemap.putAll(treemap_putall);

      System.out.println("Value after modification:"+ treemap);
   }     
}

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

Value before modification:{1=one, 2=two, 3=three, 5=five, 6=six}
Value after modification:{1=111, 2=222, 3=three, 5=five, 6=six, 7=777}

相关用法


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