ArrayList<Good> o1 = new ArrayList<>();
ArrayList<Good> o2 = new ArrayList<>();
List<Good> collect = o1.parallelStream().filter(e1 ->
!o2.parallelStream().map(e2 -> { return e2.getId();}).collect(Collectors.toList()).contains(e1.getId()))
.collect(Collectors.toList());
在代码中最终返回List,使用contains方法进行判断,相对于set集合来说,功能相对较差
因为Arratlist 是contains方法
底层是使用indexOf()该方法通过遍历数据和比较元素的方式来判断是否存在给定元素
这里推荐使用HashSet来代替ArrayList。
HashSet的contains()方法的底层实现:
set底层是map,contains()中使用HashMap的containsKey()方法进行,
可以看到HashMap底层的containsKey是用hashCode()实现的,实际就是对于每个key都有一个hash值与其对应
这样contains时只用判断对应hashcode是否有值,没有直接返回,有的话再用equals 判断内容是否相等。