已有Map,List集合
赋予临时变量
对临时变量的删除相当于
直接操作原始值
验证
赋予临时变量
对临时变量的删除相当于
直接操作原始值
验证
Map<Integer,Integer> mapCopy = null;
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
map.put(1, 1);
map.put(2, 2);
map.put(3, 3);
List<Integer> list = new ArrayList<Integer>();
list.add(1);
list.add(2);
mapCopy = map;
for (Integer id : list)
{
if (map.containsKey(id))
{
mapCopy.remove(id);
}
}
System.out.print("the map size is "+map.size());