Stream-流式操作

Stream 流式操作

Java8对集合操作功能的增强,专注于对集合的各种高效、便利、优雅的聚合操作。

获取list某个字段 组装 新list

复制代码
List<Integer> userIdList = userList.stream().map(e -> e.getUserId()).collect(Collectors.toList());

根据指定字段分组 Collectors.groupingBy()

复制代码
// 根据name字段分组,User对象值相同时不去重
Map<String, List<User>> mapByName = list.stream().collect(Collectors.groupingBy(User::getName));
// 根据name字段分组,User对象值相同时去重
Map<String, List<User>> mapByName = list.stream().collect(Collectors.groupingBy(
    e -> e.getName(),
    Collectors.mapping(e -> e, Collectors.collectingAndThen(Collectors.toSet(), ArrayList::new))));

Map<Long, List<Long>> userIdReOrderIdsMap = list.stream()
                            .collect(Collectors.groupingBy(OrderVO::getUserId,
                                    Collectors.mapping(OrderVO::getOrderId, Collectors.toList())));

去重 distinct()

复制代码
List<Integer> numList = Lists.newArrayList(1, 5, 3, 3, 6);
numList = numList.stream().distinct().collect(Collectors.toList());

// 根据指定字段去重
list = list.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(User::getId))), ArrayList::new));

条件过滤 filter()

复制代码
// 只要含有"小孙"的数据
list = list.stream().filter(e -> e.getName().equals("小孙")).collect(Collectors.toList());

求和

复制代码
// 基本类型
int sumAge = userList.stream().mapToInt(User::getAge).sum();
// 其他  -- 若bigDecimal对象为null,可filter()过滤掉空指针
BigDecimal totalMemberNum = userList.stream().map(User::getMemberNum).reduce(BigDecimal.ZERO, BigDecimal::add);

最大值/最小值

复制代码
Date minDate = userList.stream().map(User::getCreateTime).min(Date::compareTo).get();
Date maxDate = userList.stream().map(User::getCreateTime).max(Date::compareTo).get();
User maxUp = userList.stream().max(Comparator.comparingInt(User::getAge)).get();

差值(新增/删除)

复制代码
List<Integer> userIdListNew = Lists.newArrayList(1, 2, 3, 5, 6);
List<Integer> userIdListOld = Lists.newArrayList(1, 2, 3, 4);

// 删除人员 [4]
List<Integer> removeUserIdList = userIdListOld.stream().filter(userIdOld -> !userIdListNew.contains(userIdOld)).collect(Collectors.toList());
// 或使用hutool
List<Integer> addList = CollUtil.subtractToList(userIdListOld, userIdListNew); // [4]

// 新增人员 [5, 6]
List<Integer> addUserIdList = userIdListNew.stream().filter(userIdNew -> !userIdListOld.contains(userIdNew)).collect(Collectors.toList());
// 或使用hutool
List<Integer> addList = CollUtil.subtractToList(userIdListNew, userIdListOld); // [5, 6]

分类统计数量

复制代码
// 多字段统计 -- ex: 统计相同name下相同age的个数
Map<String, Map<Integer, Long>> map = list.stream().collect(
                Collectors.groupingBy(User::getName, Collectors.groupingBy(User::getAge, Collectors.counting()))
        );

// 单字段统计 [LongSummaryStatistics中包含总数、最小值、最大值、平均值等信息]   --  ex: 根据名称去统计
Map<String, LongSummaryStatistics> map = list.stream()
        .collect(
                Collectors.groupingBy(User::getName, Collectors.summarizingLong(User::getAge))
        );

求list重复元素值

复制代码
@Test
public void test02() throws Exception {
    List<Integer> list = Lists.newArrayList(1, 2, 3, 4, 5, 6, 1, 6, 6);
    List<Integer> repeatDataList = list.stream()
        .collect(Collectors.toMap(e -> e, e -> 1, Integer::sum))
        .entrySet().stream()
        .filter(entry -> entry.getValue() > 1)
        .map(Map.Entry::getKey)
        .collect(Collectors.toList());
    System.out.println(repeatDataList); // [1, 6]
    
    
    // 求list对象中某一个字段的重复值
    List<String> repeatValueDataList = dictList
                    .stream().map(e -> e.getValue()).collect(Collectors.toList())
                    .stream().collect(Collectors.toMap(e -> e, e -> 1, Integer::sum))
                    .entrySet().stream()
                    .filter(entry -> entry.getValue() > 1)
                    .map(Map.Entry::getKey)
                    .collect(Collectors.toList());
}

public <T> List<T> getRepeatDataList(List<T> list) {
    return list.stream()
            // 获得元素出现频率的 Map,键为元素,值为元素出现的次数
            .collect(Collectors.toMap(e -> e, e -> 1, Integer::sum))
            // Set<Entry>转换为Stream<Entry>
            .entrySet().stream()
            // 过滤出元素出现次数大于 1 的 entry
            .filter(entry -> entry.getValue() > 1)
            // 获得 entry 的键(重复元素)对应的 Stream
            .map(Entry::getKey)
            // 转化为 List
            .collect(Collectors.toList());
}

demo

复制代码
package com.zhengqing.demo.daily.base.java8;

import cn.hutool.json.JSONUtil;
import com.google.common.collect.Lists;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.junit.Test;

import java.util.*;
import java.util.stream.Collectors;

public class Java8_stream {
  @Test
  public void test() throws Exception {
    List<Integer> numList = Lists.newArrayList(1, 5, 3, 3, 6);
    List<User> list = Lists.newArrayList(
      User.builder().id(1).age(16).name("小张").build(),
      User.builder().id(10).age(20).name("小孙").build(),
      User.builder().id(1).age(18).name("李四").build(),
      User.builder().id(3).age(6).name("王五").build()
    );

    Map<String, List<User>> mapByName = list.stream().collect(Collectors.groupingBy(User::getName));
    System.out.println("分组:" + JSONUtil.toJsonStr(mapByName));

    numList = numList.stream().distinct().collect(Collectors.toList());
    System.out.println("去重:" + numList);

    list = list.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(User::getId))), ArrayList::new));
    System.out.println("根据指定字段去重:" + JSONUtil.toJsonStr(list));

    list = list.stream().filter(e -> e.getName().equals("小孙")).collect(Collectors.toList());
    System.out.println("条件过滤:" + JSONUtil.toJsonStr(list));
  }

  @Data
  @Builder
  @NoArgsConstructor
  @AllArgsConstructor
  static class User {
    private Integer id;
    private String name;
    private Integer age;
    private Date time;
  }
}
相关推荐
m0_488633322 小时前
Windows环境下编译运行C语言程序,合适工具与方法很关键
c语言·windows·git·开发工具·编译器
清风徐来QCQ2 小时前
八股文(1)
java·开发语言
zdl6862 小时前
springboot集成onlyoffice(部署+开发)
java·spring boot·后端
摇滚侠2 小时前
你是一名 java 程序员,总结定义数组的方式
java·开发语言·python
春日见2 小时前
云服务器开发与SSH
运维·服务器·人工智能·windows·git·自动驾驶·ssh
架构师沉默2 小时前
AI 让程序员更轻松了吗?
java·后端·架构
MrSYJ3 小时前
有没有人懂socketChannel中的write,read方法啊,给我讲讲
java·程序员·netty
Memory_荒年3 小时前
Spring Security + OAuth2 + JWT:三剑客合璧,打造“无懈可击”的微服务安全防线
java·后端·spring
杰克尼4 小时前
知识点总结--02(java基础部分)
java·开发语言·jvm