java hashmap putall_Java TreeMap putAll()用法及代码示例

java.util.TreeMap.putAll()是TreeMap类的内置方法,用于复制操作。该方法将所有元素,即映射,从一个映射复制到另一个。

用法:

new_tree_map.putAll(exist_tree_map)

参数:该方法采用一个参数exist_tree_map,该参数表示我们要从中复制的现有Map。

返回值:该方法不返回任何值。

异常:该方法引发两种类型的异常:

NullPointerException :如果指定的映射为null或包含空键,并且此映射不允许或不包含空键,则抛出此类型的异常。

ClassCastException:如果指定的类的键或值与此映射不同,则抛出此类型的异常,否则它将被阻止存储。

以下示例程序旨在说明java.util.TreeMap.putAll()方法的用法:

示例1:将字符串值映射到整数键。

// Java code to illustrate the putAll() method

import java.util.*;

public class Tree_Map_Demo {

public static void main(String[] args)

{

// Creating an empty TreeMap

TreeMap tree_map =

new TreeMap();

// Mapping string values to int keys

tree_map.put(10, "Geeks");

tree_map.put(15, "4");

tree_map.put(20, "Geeks");

tree_map.put(25, "Welcomes");

tree_map.put(30, "You");

// Displaying the TreeMap

System.out.println("Initial Mappings are: " + tree_map);

// Creating a new tree map and copying

TreeMap new_tree_map =

new TreeMap();

new_tree_map.putAll(tree_map);

// Displaying the final TreeMap

System.out.println("The new map looks like this: "

+ new_tree_map);

}

}

输出:

Initial Mappings are: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}

The new map looks like this: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}

示例2:将整数值映射到字符串键。

// Java code to illustrate the putAll() method

import java.util.*;

public class Tree_Map_Demo {

public static void main(String[] args)

{

// Creating an empty TreeMap

TreeMap tree_map =

new TreeMap();

// Mapping int values to string keys

tree_map.put("Geeks", 10);

tree_map.put("4", 15);

tree_map.put("Geeks", 20);

tree_map.put("Welcomes", 25);

tree_map.put("You", 30);

// Displaying the TreeMap

System.out.println("Initial Mappings are: "

+ tree_map);

// Creating a new tree map and copying

TreeMap new_tree_map =

new TreeMap();

new_tree_map.putAll(tree_map);

// Displaying the final TreeMap

System.out.println("The new map looks like this: "

+ new_tree_map);

}

}

输出:

Initial Mappings are: {4=15, Geeks=20, Welcomes=25, You=30}

The new map looks like this: {4=15, Geeks=20, Welcomes=25, You=30}

注意:可以对具有不同数据类型的变化和组合的任何类型的映射执行相同的操作。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值