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-- 如果指定映射為null,或者指定映射包含null鍵,而此映射不允許null鍵,將拋出此異常。
例子
下麵的例子顯示java.util.TreeMap.putAll()方法的使用
package com.yiibai; 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}