Stream流

打印 上一主题 下一主题

主题 961|帖子 961|积分 2883

1 获取Stream流

 
  1.     //方式1
  2.         List<String> list = new ArrayList<>();
  3.         list.add("张无忌");
  4.         list.add("张良");
  5.         list.add("林绍玮");
  6.         Stream<String> stream1 = list.stream();
  7.         //方式2
  8.         Stream<String> stream2= Arrays.stream(new String[]{"张无忌", "张良", "张三丰", "张翠山", "谢广坤", "林绍玮"});
  9.         //方式3
  10.         Stream<String>  stream3= Stream.of("张无忌", "张良", "张三丰", "张翠山", "谢广坤", "林绍玮");
复制代码

2 中间方法

 

 中间操作(Intermediate Operations)
中间操作返回新的流,支持链式调用,操作是惰性求值的(直到终端操作触发时才会执行)。
方法说明示例filter(Predicate<T>)过滤元素,保留满足条件的元素stream.filter(s -> s.length() > 3)map(Function<T, R>)将元素转换为另一种范例stream.map(String::toUpperCase)flatMap(Function<T, Stream<R>>)将每个元素转换为流,再合并为单一流stream.flatMap(list -> list.stream())sorted() / sorted(Comparator<T>)自然排序或自定义排序stream.sorted((a, b) -> b.compareTo(a))distinct()去重(依赖 equals 和 hashCode)stream.distinct()peek(Consumer<T>)对每个元素执行操作,一样平常用于调试stream.peek(System.out::println)limit(long n)截取前 n 个元素stream.limit(5)skip(long n)跳过前 n 个元素stream.skip(2)

3 终结方法 

 

终端操作(Terminal Operations)
终端操作触发流的处理,并返回非流的效果(如集合、值、void 等)。
方法说明示例forEach(Consumer<T>)遍历每个元素(无返回值,大概破坏函数式风格)stream.forEach(System.out::println)collect(Collector)将流转换为集合(如 List、Set、Map)stream.collect(Collectors.toList())toArray()将流转换为数组stream.toArray(String[]::new)reduce(...)将流聚合为单个值(如求和、求最大值)stream.reduce(0, (a, b) -> a + b)min(Comparator<T>) / max(...)返回最小/最大元素(返回 Optional<T>)stream.max(Integer::compare)count()返回元素个数stream.count()anyMatch(Predicate<T>)是否有任意元素满足条件(返回 boolean)stream.anyMatch(s -> s.startsWith("A"))allMatch(...) / noneMatch(...)是否所有元素满足条件 / 没有元素满足条件stream.noneMatch(s -> s.isEmpty())findFirst() / findAny()返回第一个元素 / 任意一个元素(返回 Optional<T>)stream.findFirst() 常见收集器(Collectors)
收集器说明Collectors.toList()收集为 ListCollectors.toSet()收集为 SetCollectors.toMap(...)收集为 Map(需指定键和值的映射函数)Collectors.joining(delimiter)将字符串流毗连为单个字符串Collectors.groupingBy(...)按条件分组为 Map<K, List<T>>  

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

万有斥力

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表