1、去重
List<Long> list = new ArrayList<>();list.add(1L);list.add(2L);list.add(3L);list.add(3L);list.stream().distinct().collect(Collectors.toList());
2、筛选出符合条件的数据
1)单条件筛选
筛选出性别为男的学生:
List<Student> studentList = list.stream().filter(
s->s.getGender().equals("1")
).collect(Collectors.toList());
2 )多条件筛选
筛选出性别为男并且身高为 1 米 8 以上的学生:
List<Student> studentList = list.stream().filter(
s->s.getGender().equals("1")&& s.getHeight()>=180
).collect(Collectors.toList());
3、forEach遍历列表的每一个元素
import java.util.Arrays;public class Test{public static void main(String[] args){Arrays.asList("测试1", "测试2", "测试3").forEach(System.out::println);}
}
上面这段代码中,我们使用了 forEach
方法遍历列表的每一个元素,并把元素传递给 System.out.println()
方法打印输出到屏幕上。
4、forEach设置多个属性值
list.forEach((entity) ->{entity.setCreateTime(new Date());entity.setCreateUser(user.getUserId()); });
5、提取某一列(以name为例)
对象类
@Data
public class StudentInfo implements Serializable{//名称private String name;//性别 true男 false女private Boolean gender;//年龄private Integer age;//身高private Double height;//出生日期private LocalDate birthday;
}
测试数据
//测试数据,请不要纠结数据的严谨性
List<StudentInfo> studentList = new ArrayList<>();
studentList.add(new StudentInfo("李小明",true,18,1.76,LocalDate.of(2001,3,23)));
studentList.add(new StudentInfo("张小丽",false,18,1.61,LocalDate.of(2001,6,3)));
studentList.add(new StudentInfo("王大朋",true,19,1.82,LocalDate.of(2000,3,11)));
studentList.add(new StudentInfo("陈小跑",false,17,1.67,LocalDate.of(2002,10,18)));
提取数据
//输出List
System.out.println(studentList);
//从对象列表中提取一列(以name为例)
List<String> nameList = studentList.stream().map(StudentInfo::getName).collect(Collectors.toList());
//提取后输出name
nameList.forEach(s-> System.out.println(s));
6、求和
List<Apple>
//计算 总金额
BigDecimal discountAll = list.stream().map(Apple::getDiscount).reduce(BigDecimal.ZERO, BigDecimal::add);
System.err.println("discount:"+discount);
List<Map<String, Object>>
BigDecimal discountAll = list.stream().map(m -> m.get("discount") == null ? BigDecimal.ZERO : new BigDecimal(m.get("discount").toString())).reduce(BigDecimal.ZERO, BigDecimal::add).setScale(2,BigDecimal.ROUND_DOWN);