整理下平时关于stream的复杂操作,以便于下次可以直接copy
filter
- 根据对象字段去重过滤12345678910111213141516171819class BatchCopyEntity {private String sourceKey;private String targetKey;}public static <T> Predicate<T> distinctByKey(Function<? super T, Object> keyExtractor) {Map<Object, Boolean> seen = new ConcurrentHashMap<>();return t -> seen.putIfAbsent(keyExtractor.apply(t), Boolean.TRUE) == null;}public static void main(String[] args) {List<BatchCopyEntity> affixList = new ArrayList<>();List filterList = affixList.stream()//需要根据BatchCopyEntity的字段sourceKey进行去重.filter(distinctByKey((p) -> (p.getSourceKey()))).collect(Collectors.toList());}
flatMap
- 将一个对象转换为多个其他对象
|
|