Java HashMap putAll()方法

java.util.HashMap.putAll() 方法用于在Map中插入指定的Map。

1 语法

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

2 参数

m:这是要存储在此映射中的映射。

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.HashMap.putAll()方法的例子
 */
import java.util.*;

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

        // create two hash maps
        HashMap newmap1 = new HashMap();
        HashMap newmap2 = new HashMap();

        // populate hash map
        newmap1.put(1, "tutorials");
        newmap1.put(2, "point");
        newmap1.put(3, "is best");

        System.out.println("Values in newmap1: "+ newmap1);

        // put all values in newmap2
        newmap2.putAll(newmap1);

        System.out.println("Values in newmap2: "+ newmap2);
    }
}

输出结果为:

Values in newmap1: {1=tutorials, 2=point, 3=is best}
Values in newmap2: {1=tutorials, 2=point, 3=is best}

热门文章

优秀文章