void clear();
从此映射中删除所有映射。 此调用返回后,Map将为空。
new HashMap<>();
使用默认初始容量(16)和默认加载因子(0.75)构造一个空的HashMap。
Map<K,V>的clear和new的区别
// 将Map放入List看一下效果,下面是代码演示
方案一:
public static void main(String[] args) {
Map<Integer, Integer> map1 = new HashMap<>(5);
List<Map<Integer, Integer>> list1 = new ArrayList<>();
for (int i = 0; i < 5; i++) {
map1.clear();
map1.put(i, i * 2);
list1.add(map1);
}
System.out.println(list1);
}
运行结果
方案二:
public static void main(String[] args) {
Map<Integer, Integer> map2 = null;
List<Map<Integer, Integer>> list2 = new ArrayList<>(5);
for (int i = 0; i < 5; i++) {
map2 = new HashMap<>();
map2.put(i, i * 2);
list2.add(map2);
}
System.out.println(list2);
}
运行结果
clear和new的区别
方案一:我们只是把map.clear了(查看clear的源码,clear的作用是把map里每个属性设置为null,并把map的长度设置为0)。并没有销毁,map的指针还是存储在list里面了,所以后面新add到list里面的东西都是同一个map,都是指向同一个map,list里面存储的是map的指针;
方案二:每次创建新的map,每次都是不同的引用;