當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。