2020
09-27
09-27
Java集合Map的clear与new Map区别详解
对于clear与newMap的区别。我们首先来看一个例子,本例子是我在实际开发中遇到的,需求就是讲map放入到list中,说白了就是list转map,有两种实现方式,分别是://方案一Map<Integer,Integer>map1=newHashMap<>();List<Map<Integer,Integer>>list1=newArrayList<>();for(inti=0;i<5;i++){map1.clear();map1.put(i,i*2);list1.add(map1);}//方案二Map<Integer,Integer>map2=null;List<Map<Intege...
继续阅读 >