Java IdentityHashMap putAll()方法与示例

IdentityHashMap类putAll()方法

  • putAll()方法在java.util包中可用。

  • putAll()方法用于复制给定映射(m)中存在的所有条目(键值对),并将其粘贴到此IdentityHashMap中。

  • putAll()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • 在复制键值对时,putAll()方法可能会引发异常。
    NullPointerException:当给定参数为null时,可能引发此异常。

语法:

    public void putAll(Map m);

参数:

  • 映射m –表示包含要从其复制键值对的Map对象。

返回值:

该方法的返回类型为void,不返回任何内容。

示例

//Java程序演示示例 
//IdentityHashMap putAll(Map m)方法 

import java.util.*;

public class PutAllOfIdentityHashMap {
    public static void main(String[] args) {
        //实例化一个IdentityHashMap对象
        Map < Integer, String > map = new IdentityHashMap < Integer, String > ();
        Map < Integer, String > put_map = new IdentityHashMap < Integer, String > ();

        //通过使用put()方法是添加
        //IdentityHashMap中的键值对
        map.put(10, "C");
        map.put(20, "C++");
        map.put(50, "JAVA");
        map.put(40, "PHP");
        map.put(30, "SFDC");

        //显示IdentityHashMap-
        System.out.println("IdentityHashMap: " + map);

        //通过使用putAll()方法是
        //复制给定的所有元素
        //对象并将其粘贴到另一个对象中

        put_map.putAll(map);

        //显示put_map IdentityHashMap-
        System.out.print("put_map.putAll(map): " + put_map);
    }
}

输出结果

IdentityHashMap: {20=C++, 40=PHP, 50=JAVA, 30=SFDC, 10=C}
put_map.putAll(map): {20=C++, 40=PHP, 50=JAVA, 30=SFDC, 10=C}