Stream流用法及语法你都知道吗?

一、概述

Stream 是 Java8 中处理集合的关键抽象概念,它可以指定你希望对集合进行的操作,可以执行非常复杂的查找、过滤和映射数据等操作。使用Stream API 对集合数据进行操作,就类似于使用 SQL 执行的数据库查询。也可以使用 Stream API 来并行执行操作。简而言之,Stream API 提供了一种高效且易于使用的处理数据的方式。

特点:

1 . 不是数据结构,不会保存数据。

2. 不会修改原来的数据源,它会将操作后的数据保存到另外一个对象中。(保留意见:毕竟peek方法可以修改流中元素)

3. 惰性求值,流在中间处理过程中,只是对操作进行了记录,并不会立即执行,需要等到执行终止操作的时候才会进行实际的计算。

二、具体用法

1. 流的常用创建方法

1.1 使用Collection下的 stream() 和 parallelStream() 方法

List<String> list = new ArrayList<>();

Stream<String> stream = list.stream(); //获取一个顺序流

Stream<String> parallelStream = list.parallelStream(); //获取一个并行流

1.2 使用Arrays 中的 stream() 方法,将数组转成流

Integer[] nums = new Integer[10];

Stream<Integer> stream = Arrays.stream(nums);

1.3 使用Stream中的静态方法:of()、iterate()、generate()

Stream<Integer> stream = Stream.of(1,2,3,4,5,6);

Stream<Integer> stream2 = Stream.iterate(0, (x) -> x + 2).limit(6);

stream2.forEach(System.out::println); // 0 2 4 6 8 10

Stream<Double> stream3 = Stream.generate(Math::random).limit(2);

stream3.forEach(System.out::println);

1.4 使用 BufferedReader.lines() 方法,将每行内容转成流

BufferedReader reader = new BufferedReader(new FileReader("F:\\test_stream.txt"));

Stream<String> lineStream = reader.lines();

lineStream.forEach(System.out::println);

1.5 使用 Pattern.splitAsStream() 方法,将字符串分隔成流

Pattern pattern = Pattern.compile(",");

Stream<String> stringStream = pattern.splitAsStream("a,b,c,d");

stringStream.forEach(System.out::println);

2. 流的中间操作

2.1 筛选与切片

filter:过滤流中的某些元素

limit(n):获取n个元素

skip(n):跳过n元素,配合limit(n)可实现分页

distinct:通过流中元素的 hashCode() 和 equals() 去除重复元素

Stream<Integer> stream = Stream.of(6, 4, 6, 7, 3, 9, 8, 10, 12, 14, 14);

Stream<Integer> newStream = stream.filter(s -> s > 5) //6 6 7 9 8 10 12 14 14

.distinct() //6 7 9 8 10 12 14

.skip(2) //9 8 10 12 14

.limit(2); //9 8

newStream.forEach(System.out::println);

2.2 映射

map:接收一个函数作为参数,该函数会被应用到每个元素上,并将其映射成一个新的元素。

flatMap:接收一个函数作为参数,将流中的每个值都换成另一个流,然后把所有流连接成一个流。

List<String> list = Arrays.asList("a,b,c", "1,2,3");

//将每个元素转成一个新的且不带逗号的元素

Stream<String> s1 = list.stream().map(s -> s.replaceAll(",", ""));

s1.forEach(System.out::println); // abc 123

Stream<String> s3 = list.stream().flatMap(s -> {

//将每个元素转换成一个stream

String[] split = s.split(",");

Stream<String> s2 = Arrays.stream(split);

return s2;

});

s3.forEach(System.out::println); // a b c 1 2 3

2.3 排序

sorted():自然排序,流中元素需实现Comparable接口

sorted(Comparator com):定制排序,自定义Comparator排序器

public static void main(String[] args) {

List<Person> personList = new ArrayList<Person>();

personList.add(new Person("Sherry", 9000, 24, "female", "New York"));

personList.add(new Person("Tom", 8900, 22, "male", "Washington"));

personList.add(new Person("Jack", 9000, 25, "male", "Washington"));

personList.add(new Person("Lily", 8800, 26, "male", "New York"));

personList.add(new Person("Alisa", 9000, 26, "female", "New York"));

// 按工资升序排序(自然排序)

List<String> newList = personList.stream().sorted(Comparator.comparing(Person::getSalary)).map(Person::getName)

.collect(Collectors.toList());

// 按工资倒序排序

List<String> newList2 = personList.stream().sorted(Comparator.comparing(Person::getSalary).reversed())

.map(Person::getName).collect(Collectors.toList());

// 先按工资再按年龄升序排序

List<String> newList3 = personList.stream()

.sorted(Comparator.comparing(Person::getSalary).thenComparing(Person::getAge)).map(Person::getName)

.collect(Collectors.toList());

// 先按工资再按年龄自定义排序(降序)

List<String> newList4 = personList.stream().sorted((p1, p2) -> {

if (p1.getSalary() == p2.getSalary()) {

return p2.getAge() - p1.getAge();

} else {

return p2.getSalary() - p1.getSalary();

}

}).map(Person::getName).collect(Collectors.toList());

System.out.println("按工资升序排序:" + newList);

System.out.println("按工资降序排序:" + newList2);

System.out.println("先按工资再按年龄升序排序:" + newList3);

System.out.println("先按工资再按年龄自定义降序排序:" + newList4);

}

2.4 消费

peek:如同于map,能得到流中的每一个元素。但map接收的是一个Function表达式,有返回值;而peek接收的是Consumer表达式,没有返回值。

Student s1 = new Student("aa", 10);

Student s2 = new Student("bb", 20);

List<Student> studentList = Arrays.asList(s1, s2);

studentList.stream()

.peek(o -> o.setAge(100))

.forEach(System.out::println);

//结果:

Student{name='aa', age=100}

Student{name='bb', age=100}

2.5 规约操作

归约,也称缩减,顾名思义,是把一个流缩减成一个值,能实现对集合求和、求乘积和求最值操作

public static void main(String[] args) {

List<Integer> list = Arrays.asList(1, 3, 2, 8, 11, 4);

// 求和方式1

Optional<Integer> sum = list.stream().reduce((x, y) -> x + y);

// 求和方式2

Optional<Integer> sum2 = list.stream().reduce(Integer::sum);

// 求和方式3

Integer sum3 = list.stream().reduce(0, Integer::sum);

// 求乘积

Optional<Integer> product = list.stream().reduce((x, y) -> x * y);

// 求最大值方式1

Optional<Integer> max = list.stream().reduce((x, y) -> x > y ? x : y);

// 求最大值写法2

Integer max2 = list.stream().reduce(1, Integer::max);

System.out.println("list求和:" + sum.get() + "," + sum2.get() + "," + sum3);

System.out.println("list求积:" + product.get());

System.out.println("list求和:" + max.get() + "," + max2);

}

public static void main(String[] args) {

List<Person> personList = new ArrayList<Person>();

personList.add(new Person("Tom", 8900, 23, "male", "New York"));

personList.add(new Person("Jack", 7000, 25, "male", "Washington"));

personList.add(new Person("Lily", 7800, 21, "female", "Washington"));

// 每个员工减去起征点后的薪资之和(这个例子并不严谨,但一时没想到好的例子)

Integer sum = personList.stream().collect(Collectors.reducing(0, Person::getSalary, (i, j) -> (i + j - 5000)));

System.out.println("员工扣税薪资总和:" + sum);

// stream的reduce

Optional<Integer> sum2 = personList.stream().map(Person::getSalary).reduce(Integer::sum);

System.out.println("员工薪资总和:" + sum2.get());

}

2.6 收集操作

collect,收集,可以说是内容最繁多、功能最丰富的部分了。从字面上去理解,就是把一个流收集起来,最终可以是收集成一个值也可以收集成一个新的集合。

2.6.1 归集(toList/toSet/toMap)

public static void main(String[] args) {

List<Integer> list = Arrays.asList(1, 6, 3, 4, 6, 7, 9, 6, 20);

List<Integer> listNew = list.stream().filter(x -> x % 2 == 0).collect(Collectors.toList());

Set<Integer> set = list.stream().filter(x -> x % 2 == 0).collect(Collectors.toSet());

List<Person> personList = new ArrayList<Person>();

personList.add(new Person("Tom", 8900, 23, "male", "New York"));

personList.add(new Person("Jack", 7000, 25, "male", "Washington"));

personList.add(new Person("Lily", 7800, 21, "female", "Washington"));

personList.add(new Person("Anni", 8200, 24, "female", "New York"));

Map<?, Person> map = personList.stream().filter(p -> p.getSalary() > 8000)

.collect(Collectors.toMap(Person::getName, p -> p));

System.out.println("toList:" + listNew);

System.out.println("toSet:" + set);

System.out.println("toMap:" + map);

}

2.6.2 统计(count/averaging)

Collectors提供了一系列用于数据统计的静态方法:

计数:count

平均值:averagingInt、averagingLong、averagingDouble

最值:maxBy、minBy

求和:summingInt、summingLong、summingDouble

统计以上所有:summarizingInt、summarizingLong、summarizingDouble

public class StreamTest {

public static void main(String[] args) {

List<Person> personList = new ArrayList<Person>();

personList.add(new Person("Tom", 8900, 23, "male", "New York"));

personList.add(new Person("Jack", 7000, 25, "male", "Washington"));

personList.add(new Person("Lily", 7800, 21, "female", "Washington"));

// 求总数

Long count = personList.stream().collect(Collectors.counting());

// 求平均工资

Double average = personList.stream().collect(Collectors.averagingDouble(Person::getSalary));

// 求最高工资

Optional<Integer> max = personList.stream().map(Person::getSalary).collect(Collectors.maxBy(Integer::compare));

// 求工资之和

Integer sum = personList.stream().collect(Collectors.summingInt(Person::getSalary));

// 一次性统计所有信息

DoubleSummaryStatistics collect = personList.stream().collect(Collectors.summarizingDouble(Person::getSalary));

System.out.println("员工总数:" + count);

System.out.println("员工平均工资:" + average);

System.out.println("员工工资总和:" + sum);

System.out.println("员工工资所有统计:" + collect);

}

}

2.6.3 分组(partitioningBy/groupingBy)

分区:将stream按条件分为两个Map,比如员工按薪资是否高于8000分为两部分。

分组:将集合分为多个Map,比如员工按性别分组。有单级分组和多级分组。

public class StreamTest {

public static void main(String[] args) {

List<Person> personList = new ArrayList<Person>();

personList.add(new Person("Tom", 8900, "male", "New York"));

personList.add(new Person("Jack", 7000, "male", "Washington"));

personList.add(new Person("Lily", 7800, "female", "Washington"));

personList.add(new Person("Anni", 8200, "female", "New York"));

personList.add(new Person("Owen", 9500, "male", "New York"));

personList.add(new Person("Alisa", 7900, "female", "New York"));

// 将员工按薪资是否高于8000分组

Map<Boolean, List<Person>> part = personList.stream().collect(Collectors.partitioningBy(x -> x.getSalary() > 8000));

// 将员工按性别分组

Map<String, List<Person>> group = personList.stream().collect(Collectors.groupingBy(Person::getSex));

// 将员工先按性别分组,再按地区分组

Map<String, Map<String, List<Person>>> group2 = personList.stream().collect(Collectors.groupingBy(Person::getSex, Collectors.groupingBy(Person::getArea)));

System.out.println("员工按薪资是否大于8000分组情况:" + part);

System.out.println("员工按性别分组情况:" + group);

System.out.println("员工按性别、地区:" + group2);

}

}

2.6.4 接合(joining)

joining可以将stream中的元素用特定的连接符(没有的话,则直接连接)连接成一个字符串。

public class StreamTest {

public static void main(String[] args) {

List<Person> personList = new ArrayList<Person>();

personList.add(new Person("Tom", 8900, 23, "male", "New York"));

personList.add(new Person("Jack", 7000, 25, "male", "Washington"));

personList.add(new Person("Lily", 7800, 21, "female", "Washington"));

String names = personList.stream().map(p -> p.getName()).collect(Collectors.joining(","));

System.out.println("所有员工的姓名:" + names);

List<String> list = Arrays.asList("A", "B", "C");

String string = list.stream().collect(Collectors.joining("-"));

System.out.println("拼接后的字符串:" + string);

}

}

2.7 流匹配

匹配、聚合操作

allMatch:接收一个 Predicate 函数,当流中每个元素都符合该断言时才返回true,否则返回false

noneMatch:接收一个 Predicate 函数,当流中每个元素都不符合该断言时才返回true,否则返回false

anyMatch:接收一个 Predicate 函数,只要流中有一个元素满足该断言则返回true,否则返回false

findFirst:返回流中第一个元素

findAny:返回流中的任意元素

count:返回流中元素的总个数

max:返回流中元素最大值

min:返回流中元素最小值

List<Integer> list = Arrays.asList(1, 2, 3, 4, 5);

boolean allMatch = list.stream().allMatch(e -> e > 10); //false

boolean noneMatch = list.stream().noneMatch(e -> e > 10); //true

boolean anyMatch = list.stream().anyMatch(e -> e > 4); //true

Integer findFirst = list.stream().findFirst().get(); //1

Integer findAny = list.stream().findAny().get(); //1

long count = list.stream().count(); //5

Integer max = list.stream().max(Integer::compareTo).get(); //5

Integer min = list.stream().min(Integer::compareTo).get(); //1

三 总结

Java 8 API添加了一个新的抽象称为流Stream,可以让你以一种声明的方式处理数据。Stream 使用一种类似用 SQL 语句从数据库查询数据的直观方式来提供一种对 Java 集合运算和表达的高阶抽象。Stream API可以极大提高Java程序员的生产力,让程序员写出高效率、干净、简洁的代码。这种风格将要处理的元素集合看作一种流, 流在管道中传输, 并且可以在管道的节点上进行处理, 比如筛选, 排序,聚合等。元素流在管道中经过中间操作(intermediate operation)的处理,最后由最终操作(terminal operation)得到前面处理的结果。

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值