目录
集合处理数据的弊端
Stream流的获取方式
对于Collection的实现类
对于Map
对于数组
Stream常用方法介绍
count
forEach
filter
limit
skip
map
sorted
distinct
match
find
max和min
reduce
mapToInt
concat
Stream结果收集
结果收集到集合中
结果收集到数组中
对流中的数据做聚合计算
对流中数据做分组操作
对流中的数据做分区操作
对流中的数据做拼接
并行的Stream流
串行的Stream流
并行流
线程安全问题
当我们在需要对集合中的元素进行操作的时候,除了必需的添加,删除,获取外,最典型的操作就是 集合遍历
看这个例子:
public class StreamTest1 {@Testpublic void test() {// 定义一个List集合List list = Arrays.asList("张三", "张三丰", "成龙", "周星驰");// 1.获取所有 姓张的信息List list1 = new ArrayList<>();for (String s : list) {if (s.startsWith("张")) {list1.add(s);}}// 2.获取名称长度为3的用户List list2 = new ArrayList<>();for (String s : list1) {if (s.length() == 3) {list2.add(s);}}// 3. 输出满足条件的所有用户的信息for (String s : list2) {System.out.println(s);}}
}
上面的代码针对与我们不同的需求总是一次次的循环循环循环.这时我们希望有更加高效的处理方式,这 时我们就可以通过JDK8中提供的Stream API来解决这个问题了。
Stream更加优雅的解决方案:
@Testpublic void test2(){List list = Arrays.asList("张三", "张三丰", "成龙", "周星驰");list.stream().filter(s->s.startsWith("张")).filter(s->s.length()==3).forEach(System.out::println);}
看上面的代码够简短吧。获取流,过滤张,过滤长度,逐一打印。代码相比于上面的案例更加的简 洁直观,接下来我们就来学习学习stream流。
首先,java.util.Collection 接口中加入了default方法 stream,也就是说Collection接口下的所有的实 现都可以通过steam方法来获取Stream流。
public class getStreamTest {@Testpublic void test1(){ArrayList
Map接口别没有实现Collection接口,那这时怎么办呢?这时我们可以根据Map的 entrySet() 方法获取对应的key value的集合。
@Testpublic void test2(){HashMap map = new HashMap<>();map.entrySet().stream();}
初学者可能不太好理解这个entrySet方法。这样想,map本来是存放一组组键值对的一个容器嘛,那我们要对容器里面的键值对进行遍历,但是遍历不了哇,要么就只能遍历键,要么就只能遍历值,无法完成我们的需求,所以有了entrySet方法,用来将map容器里面的这些键值对一组组的分好,这么一看,是不是这个容器就类似Collection了,这样我们每次遍历的时候每一项都是一个键值对映射项。看下面这个例子:
在实际开发中我们不可避免的还是会操作到数组中的数据,由于数组对象不可能添加默认方法,所 有Stream接口中提供了静态方法of。
@Testpublic void test3(){String[] a={"aa","bb","cc"};Stream a1 = Stream.of(a);a1.forEach(System.out::println);Integer[] b={1,23,8,5};Stream b1 = Stream.of(b);b1.forEach(System.out::println);//基本数据类型不行int[] c={1,5,3,6};Stream c1 = Stream.of(c);c1.forEach(System.out::println);}
但是注意:基本数据类型的数组不行,必须要是包装数据类型数组。
Stream流的操作很丰富,这里只介绍一些常用的API。这些方法可以被分成两种:
终结方法:返回值类型不再是 Stream 类型的方法,不再支持链式调用,常用的有count方法和forEach方法。
非终结方法:返回值类型仍然是 Stream 类型的方法,支持链式调用。除了终结方法以外的都是非终结方法。
Stream注意事项(重要):
该方法返回一个long值,表示元素的个数
public static void main(String[] args) {long count = Stream.of("a1", "a2", "a3").count();System.out.println(count);
}
该方法接收一个Consumer函数式接口,会将元素遍历交给函数处理
public static void main(String[] args) {Stream.of("a1", "a2", "a3").forEach(System.out::println);;
}
filter方法的作用是用来过滤数据的。返回符合条件的数据。该接口接收一个Predicate函数式接口参数作为筛选条件
public static void main(String[] args) {Stream.of("a1", "a2", "a3","bb","cc","aa","dd").filter((s)->s.contains("a")).forEach(System.out::println);
}
参数是一个long类型的数值,对该集合的前n个元素进行截取
public static void main(String[] args) {Stream.of("a1", "a2", "a3","bb","cc","aa","dd").limit(3).forEach(System.out::println);
}
参数是一个long类型的数值,对该集合的前n个元素进行跳过,和limit恰好相反
public static void main(String[] args) {Stream.of("a1", "a2", "a3","bb","cc","aa","dd").skip(3).forEach(System.out::println);
}
该接口需要一个Function函数式接口参数,然后对元素进行遍历操作
@Testpublic void test4(){String[] str= {"cc2","2cl2","3vv"};List collect = Stream.of(str).map(String::length).collect(Collectors.toList());System.out.println(collect);}
对数据进行排序,默认是可以自然排序,也可以自己实现排序规则
@Testpublic void test5(){Integer[] a={1,8,2,6,58,6};Stream.of(a)//.sorted() //默认为自然排序.sorted((i,j)->j-i)//自定义规则,这里我们是逆序.forEach(System.out::println);}
对数据进行去重操作。
Stream流中的distinct方法对于基本数据类型是可以直接出重的,但是对于自定义类型,我们是需要重写hashCode和equals方法来定义规则。
@Testpublic void test6(){Integer[] a={1,8,2,6,58,6};Stream.of(a)//.sorted() //默认为自然排序.sorted((i,j)->j-i)//自定义规则,这里我们是逆序.distinct().forEach(System.out::println);}
如果需要判断数据是否匹配指定的条件,可以使用match相关的方法
boolean anyMatch(Predicate predicate); // 元素是否有任意一个满足条件 boolean allMatch(Predicate predicate); // 元素是否都满足条件
boolean noneMatch(Predicate predicate); // 元素是否都不满足条件
public static void main(String[] args) {boolean b = Stream.of("1", "3", "3", "4", "5", "1", "7").map(Integer::parseInt)//.allMatch(s -> s > 0)//.anyMatch(s -> s >4).noneMatch(s -> s > 4);System.out.println(b);
}
注意match是一个终结方法
如果我们需要找到某些数据,可以使用find方法来实现
Optional findFirst();
Optional findAny();
public static void main(String[] args) {Optional first = Stream.of("1", "3", "3", "4", "5", "1","7").findFirst();System.out.println(first.get());Optional any = Stream.of("1", "3", "3", "4", "5", "1","7").findAny();System.out.println(any.get());
}
如果我们想要获取最大值和最小值,那么可以使用max和min方法
Optional min(Comparator comparator);
Optional max(Comparator comparator);
public static void main(String[] args) {Optional max = Stream.of("1", "3", "3", "4", "5", "1", "7").map(Integer::parseInt).max((o1,o2)->o1-o2);System.out.println(max.get());Optional min = Stream.of("1", "3", "3", "4", "5", "1", "7").map(Integer::parseInt).min((o1,o2)->o1-o2);System.out.println(min.get());
}
如果需要将所有数据归纳得到一个数据,可以使用reduce方法
public static void main(String[] args) {Integer sum = Stream.of(4, 5, 3, 9)// identity默认值// 第一次的时候会将默认值赋值给x// 之后每次会将 上一次的操作结果赋值给x y就是每次从数据中获取的元素.reduce(0, (x, y) -> {System.out.println("x="+x+",y="+y);return x + y;});System.out.println(sum);// 获取 最大值Integer max = Stream.of(4, 5, 3, 9).reduce(0, (x, y) -> {return x > y ? x : y;});System.out.println(max);
}
如果需要将Stream中的Integer类型转换成int类型,可以使用mapToInt方法来实现
public static void main(String[] args) {// Integer占用的内存比int多很多,在Stream流操作中会自动装修和拆箱操作Integer arr[] = {1, 2, 3, 5, 6, 8};Stream.of(arr).filter(i -> i > 0).forEach(System.out::println);// 为了提高程序代码的效率,我们可以先将流中Integer数据转换为int数据,然后再操作IntStream intStream = Stream.of(arr).mapToInt(Integer::intValue);intStream.filter(i -> i > 3).forEach(System.out::println);}
如果有两个流,希望合并成为一个流,那么可以使用Stream接口的静态方法concat
public static void main(String[] args) {Stream stream1 = Stream.of("a","b","c");Stream stream2 = Stream.of("x", "y", "z");// 通过concat方法将两个流合并为一个新的流Stream.concat(stream1,stream2).forEach(System.out::println);
}
@Testpublic void test7(){List list = Stream.of("a", "b", "c").collect(Collectors.toList());System.out.println(list);Set set = Stream.of("a", "b", "c").collect(Collectors.toSet());System.out.println(set);ArrayList arrayList = Stream.of("a", "b", "c").collect(Collectors.toCollection(ArrayList::new));System.out.println(arrayList);HashSet hashSet = Stream.of("a", "b", "c").collect(Collectors.toCollection(HashSet::new));System.out.println(hashSet);}
Stream中提供了toArray方法来将结果放到一个数组中,返回值类型是Object[],如果我们要指定返回的 类型,那么可以使用另一个重载的toArray(IntFunction f)方法
@Testpublic void test8(){Object[] objects = Stream.of("a", "b", "c").toArray();System.out.println(objects);String[] strings = Stream.of("a", "b", "c").toArray(String[]::new);System.out.println(strings);}
@Testpublic void test9() {// 获取年龄的最大值Optional maxAge = Stream.of(new Person("张三", 18), new Person("李四", 22), new Person("张三", 13), new Person("王五", 15), new Person("张三", 19)).collect(Collectors.maxBy((p1, p2) -> p1.getAge() - p2.getAge()));System.out.println("最大年龄:" + maxAge.get());// 获取年龄的最小值Optional minAge = Stream.of(new Person("张三", 18), new Person("李四", 22), new Person("张三", 13), new Person("王五", 15), new Person("张三", 19)).collect(Collectors.minBy((p1, p2) -> p1.getAge() - p2.getAge()));System.out.println("最新年龄:" + minAge.get());// 求所有人的年龄之和Integer sumAge = Stream.of(new Person("张三", 18), new Person("李四", 22), new Person("张三", 13), new Person("王五", 15), new Person("张三", 19)).collect(Collectors.summingInt(Person::getAge));System.out.println("年龄总和:" + sumAge);// 年龄的平均值Double avgAge = Stream.of(new Person("张三", 18), new Person("李四", 22), new Person("张三", 13), new Person("王五", 15), new Person("张三", 19)).collect(Collectors.averagingInt(Person::getAge));System.out.println("年龄的平均值:" + avgAge);// 统计数量Long count = Stream.of(new Person("张三", 18), new Person("李四", 22), new Person("张三", 13), new Person("王五", 15), new Person("张三", 19)).filter(p -> p.getAge() > 18).collect(Collectors.counting());System.out.println("满足条件的记录数:" + count);}
当我们使用Stream流处理数据后,可以根据某个属性将数据分组
@Testpublic void test10() {// 根据账号对数据进行分组Map> map1 = Stream.of(new Person("张三", 18, 175), new Person("李四", 22, 177), new Person("张三", 14, 165), new Person("李四", 15, 166), new Person("张三", 19, 182)).collect(Collectors.groupingBy(Person::getName));map1.forEach((k, v) -> System.out.println("k=" + k + "\t" + "v=" + v));// 根据年龄分组 如果大于等于18 成年否则未成年Map> map2 = Stream.of(new Person("张三", 18, 175), new Person("李四", 22, 177), new Person("张三", 14, 165), new Person("李四", 15, 166), new Person("张三", 19, 182)).collect(Collectors.groupingBy(p -> p.getAge() >= 18 ? "成年" : "未成年"));map2.forEach((k, v) -> System.out.println("k=" + k + "\t" + "v=" + v));}
Collectors.partitioningBy会根据值是否为true,把集合中的数据分割为两个列表,一个true列表,一个 false列表
@Testpublic void test11() {Map> map = Stream.of(new Person("张三", 18, 175), new Person("李四", 22, 177), new Person("张三", 14, 165), new Person("李四", 15, 166), new Person("张三", 19, 182)).collect(Collectors.partitioningBy(p -> p.getAge() > 18));map.forEach((k, v) -> System.out.println(k + "\t" + v));}
Collectors.joining会根据指定的连接符,将所有的元素连接成一个字符串
@Testpublic void test12() {String s1 = Stream.of(new Person("张三", 18, 175), new Person("李四", 22, 177), new Person("张三", 14, 165), new Person("李四", 15, 166), new Person("张三", 19, 182)).map(Person::getName).collect(Collectors.joining());// 张三李四张三李四张三System.out.println(s1);String s2 = Stream.of(new Person("张三", 18, 175), new Person("李四", 22, 177), new Person("张三", 14, 165), new Person("李四", 15, 166), new Person("张三", 19, 182)).map(Person::getName).collect(Collectors.joining("_"));// 张三_李四_张三_李四_张三System.out.println(s2);String s3 = Stream.of(new Person("张三", 18, 175), new Person("李四", 22, 177), new Person("张三", 14, 165), new Person("李四", 15, 166), new Person("张三", 19, 182)).map(Person::getName).collect(Collectors.joining("_", "###", "$$$"));// ###张三_李四_张三_李四_张三$$$System.out.println(s3);}
我们前面使用的Stream流都是串行,也就是在一个线程上面执行。
@Test
public void test01(){Stream.of(5,6,8,3,1,6).filter(s->{System.out.println(Thread.currentThread() + "" + s);return s > 3;}).count();
}
Thread[main,5,main]5
Thread[main,5,main]6
Thread[main,5,main]8
Thread[main,5,main]3
Thread[main,5,main]1
Thread[main,5,main]6
parallelStream其实就是一个并行执行的流,它通过默认的ForkJoinPool,可以提高多线程任务的速度。
我们可以通过两种方式来获取并行流:
@Test
public void test02(){List list = new ArrayList<>();// 通过List 接口 直接获取并行流Stream integerStream = list.parallelStream();// 将已有的串行流转换为并行流Stream parallel = Stream.of(1, 2, 3).parallel();
}
测试:
@Test
public void test03(){Stream.of(1,4,2,6,1,5,9).parallel() // 将流转换为并发流,Stream处理的时候就会通过多线程处理.filter(s->{System.out.println(Thread.currentThread() + " s=" +s);return s > 2;}).count();
}
Thread[main,5,main] s=1
Thread[ForkJoinPool.commonPool-worker-2,5,main] s=9 Thread[ForkJoinPool.commonPool-worker-6,5,main] s=6 Thread[ForkJoinPool.commonPool-worker-13,5,main] s=2 Thread[ForkJoinPool.commonPool-worker-9,5,main] s=4 Thread[ForkJoinPool.commonPool-worker-4,5,main] s=5 Thread[ForkJoinPool.commonPool-worker-11,5,main] s=1
在多线程的处理下,肯定会出现数据安全问题。如下:
@Testpublic void test9(){ArrayList arrayList1 = new ArrayList<>();for (int i=0;i<1000;i++){arrayList1.add(i);}ArrayList arrayList2 = new ArrayList<>();arrayList1.parallelStream().forEach(arrayList2::add);System.out.println(arrayList2.size());}
运行以后结果并不是1000
针对这个问题,我们的解决方案有哪些呢?
//加同步锁@Testpublic void test9() {Object o = new Object();ArrayList arrayList1 = new ArrayList<>();for (int i = 0; i < 1000; i++) {arrayList1.add(i);}ArrayList arrayList2 = new ArrayList<>();arrayList1.parallelStream().forEach((a) -> {synchronized (o) {arrayList2.add(a);}});System.out.println(arrayList2.size());}
//使用线程安全的容器@Testpublic void test10() {Vector objects = new Vector<>();for (int i = 0; i < 1000; i++) {objects.add(i);}Vector vector = new Vector<>();objects.parallelStream().forEach((a) -> {vector.add(a);});System.out.println(vector.size());}
//将线程不安全的容器包装为线程安全的容器@Testpublic void test11() {List listNew = new ArrayList<>();List synchronizedList = Collections.synchronizedList(listNew);IntStream.rangeClosed(1, 1000).parallel().forEach(i -> {synchronizedList.add(i);});System.out.println(synchronizedList.size());}
//通过Stream中的 toArray方法或者 collect方法来操作@Testpublic void test12() {List list = IntStream.rangeClosed(1, 1000).parallel().boxed().collect(Collectors.toList());System.out.println(list.size());}