Java8新特性 Java8新特性的好处
速度更快
代码更少(Lambda简化代码书写)
强大的Stream API(我就是冲着它来的,真滴好用)
便于并行
最大化减少空指针异常:Optional
Nashorn引擎,允许在JVM上运行JS应用
并行流与串行流
并行流就是把一个内容分为多个数据块,并用不同的线程分别处理每个数据块的流,相比较于串行流,可以很大程度上提高程序的执行效率
Java8中将其进行了优化,我们可以很容易的对数据进行并行操作。
Stream API 可以声明性地通过parallel()和sequential()在并行流与顺序流之间进行切换
Lambda表达式
Lambda是一个匿名函数,我们可以把Lambda表达式理解为是一段可以传递的代码(将代码像数据一样进行传递)。
使用它可以写出更简洁、更灵活的代码。作为一种更紧凑的代码风格,是Java的语言表达能力得到了提升
Lambda举例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 JAVA @Test public void test01 () { Runnable runnable01 = new Runnable () { @Override public void run () { System.out.println("你 的 城 市 好 像 不 欢 迎 我" ); } }; runnable01.run(); System.out.println("------------------------" ); Runnable runnable02 = () -> System.out.println("所 以 我 只 好 转 身 离 开 了" ); runnable02.run(); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 @Test public void test02 () { Comparator<Integer> comparator01 = new Comparator <Integer>() { @Override public int compare (Integer o1, Integer o2) { return o1.compareTo(o2); } }; System.out.println(comparator01.compare(95 , 27 )); System.out.println("------------------------" ); Comparator<Integer> comparator02 = (o1,o2) -> o1.compareTo(o2); System.out.println(comparator02.compare(12 , 21 )); System.out.println("------------------------" ); Comparator<Integer> comparator03 = Integer::compareTo; System.out.println(comparator03.compare(20 , 77 )); }
Lambda表达式的使用
举例: (o1,o2) -> Integer.compare(o1,o2);
格式:
->:
lambda操作符或箭头操作符
->左边:
lambda形参列表 (其实就是接口中的抽象方法的形参列表 )
->右边:
lambda体(其实就是重写的抽象方法的方法体 )
3.Lambda表达式的使用:六种情况
总结:
->左边:Lambda形参列表可以省略,如果只有一个参数,也可以省略()
->右边:Lambda体应该使用一对{}包裹,如果只有一条语句,可以省略,返回值return可以省略
本质:接口的实例。 依赖于函数型接口
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 JAVA @Test public void test01 () { Runnable runnable01 = new Runnable () { @Override public void run () { System.out.println("你 的 城 市 好 像 不 欢 迎 我" ); } }; runnable01.run(); System.out.println("-------------------------" ); Runnable runnable02 = () -> System.out.println("所 以 我 只 好 转 身 离 开 了" ); runnable02.run(); }
语法格式二:
Lambda需要一个参数,但是没有返回值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 JAVA @Test public void test03 () { Consumer<String> consumer01 = new Consumer <String>() { @Override public void accept (String s) { System.out.println(s); } }; consumer01.accept("其实我存过你照片 也研究过你的星座" ); System.out.println("-------------------------" ); Consumer<String> consumer02 = (String s) -> {System.out.println(s);}; consumer02.accept("你喜欢的歌我也会去听 你喜欢的事物我也会想去了解" ); }
语法格式三:
数据类型可以省略,因为可由类型推断
得出
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 JAVA @Test public void test04 () { Consumer<String> consumer01 = new Consumer <String>() { @Override public void accept (String s) { System.out.println(s); } }; consumer01.accept("我远比表面上更喜欢你" ); System.out.println("-------------------------" ); Consumer<String> consumer02 = (s) -> {System.out.println(s);}; consumer02.accept("但我没有说" ); }
语法格式四:
Lambda若只需要一个参数,参数的小括号可以省略
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 JAVA @Test public void test04 () { Consumer<String> consumer01 = new Consumer <String>() { @Override public void accept (String s) { System.out.println(s); } }; consumer01.accept("我远比表面上更喜欢你" ); System.out.println("-------------------------" ); Consumer<String> consumer02 = s -> {System.out.println(s);}; consumer02.accept("但我没有说" ); }
语法格式五:
Lambda需要两个或以上参数,多条执行语句,并且有返回值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 JAVA @Test public void test02 () { Comparator<Integer> comparator01 = new Comparator <Integer>() { @Override public int compare (Integer o1, Integer o2) { System.out.println(o1); System.out.println(o2); return o1.compareTo(o2); } }; System.out.println(comparator01.compare(95 , 27 )); System.out.println("-------------------------" ); Comparator<Integer> comparator02 = (o1, o2) -> { System.out.println(o1); System.out.println(o2); return o1.compareTo(o2); }; System.out.println(comparator02.compare(12 , 21 )); }
语法格式六:
当Lambda体只有一条语句时,return与{}若有,则都可以省略
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 JAVA public void test02 () { Comparator<Integer> comparator01 = new Comparator <Integer>() { @Override public int compare (Integer o1, Integer o2) { return o1.compareTo(o2); } }; System.out.println(comparator01.compare(95 , 27 )); System.out.println("-------------------------" ); Comparator<Integer> comparator02 = (o1, o2) -> o1.compareTo(o2); System.out.println(comparator02.compare(12 , 21 )); }
函数式接口 函数式接口介绍
Lambda表达式的本质:作为函数式接口的实例
如果在一个接口中,只声明了一个抽象方法 ,则此接口就被称为函数式接口,我们可以在一个接口上使用**@FunctionalInterface注解**来验证该接口是否为函数式接口(如果你在该接口中写了两个方法,则编译期就会报错)
正是因为抽象方法中只有一个方法,所以我们才可以省略@Override函数声明等内容
在java.util.function
包下定义了Java 8 的丰富的函数式接口
Java从诞生日起就是一直倡导“一切皆对象”,在Java里面面向对象(OOP)编程是一切。但是随着Python、Scala等语言的兴起和新技术的挑战,Java不得不做出调整以便支持更加广泛的技术要求,也即java不但可以支持OOP还可以支持OOF(面向函数编程)
在函数式编程语言当中,函数被当做一等公民对待。在将函数作为一等公民的编程语言中,Lambda表达式的类型是函数。但是在Java8中,有所不同。在Java8中,Lambda表达式是对象,而不是函数,它们必须依附于一类特别的对象类型——函数式接口。
简单的说,在Java8中,Lambda表达式就是一个函数式接口的实例。这就是Lambda表达式和函数式接口的关系。也就是说,只要一个对象是函数式接口的实例,那么该对象就可以用Lambda表达式来表示。
所以以前用匿名实现类 表示的现在都可以用Lambda表达式来写。
Java内置的函数式接口介绍及使用举例
函数式接口
参数类型
返回类型
用途
Consumer 消费型接口
T
void
对类型为T的对象应用操作,包含方法:void accept(T t)
Supplier 供给型接口
无
T
返回类型为T的对象,包含方法:T get()
Function<T, R>函数型接口
T
R
对类型为T的对象应用操作,并返回结果。结果是R类型的对象。包含方法:R apply(T t)
Predicate断定型接口
T
boolean
确定类型为T的对象是否满足某约束,并返回boolean 值。包含方法:boolean test(T t)
BiFunction<T,U,R>
T, U
R
对类型为T,U参数应用操作,返回R类型的结果。包含方法为:Rapply(T t,U u);
UnaryOperator(Function子接口)
T
T
对类型为T的对象进行一元运算,并返回T类型的结果。包含方法为:Tapply(T t);
BinaryOperator(BiFunction子接口)
T,T
T
对类型为T的对象进行二元运算,并返回T类型的结果。包含方法为:Tapply(T t1,T t2);
BiConsumer<T,U>
T,U
void
对类型为T,U参数应用操作。包含方法为:voidaccept(Tt,Uu)
BiPredicate<T,U>
T,U
boolean
包含方法为:booleantest(Tt,Uu)
ToIntFunction
T
int
计算int值的函数
ToLongFunction
T
long
计算long值的函数
ToDoubleFunction
T
double
计算double值的函数
IntFunction
int
R
参数为int类型的函数
LongFunction
long
R
参数为long类型的函数
DoubleFunction
double
R
参数为double类型的函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 public void happyTime (double money, Consumer<Double> consumer) { consumer.accept(money); } @Test public void test04 () { happyTime(1241 , new Consumer <Double>() { @Override public void accept (Double money) { System.out.println("突然想回一趟成都了,机票花费" + money); } }); System.out.println("------------------------" ); happyTime(648 , money -> System.out.println("学习太累了,奖励自己一发十连,花费" + money)); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 public List<String> filterString (List<String> strings, Predicate<String> predicate) { ArrayList<String> res = new ArrayList <>(); for (String string : strings) { if (predicate.test(string)) res.add(string); } return res; } @Test public void test05 () { List<String> strings = Arrays.asList("东京" , "西京" , "南京" , "北京" , "天津" , "中京" ); List<String> list = filterString(strings, new Predicate <String>() { @Override public boolean test (String s) { return s.contains("京" ); } }); System.out.println(list); System.out.println("------------------------" ); List<String> res = filterString(strings, s -> s.contains("京" )); System.out.println(res); }
方法引用和构造器引用
当要传递给Lambda体的操作,已经有实现的方法了,可以使用方法引用
方法引用可以看做会Lambda表达式的深层次表达,换句话说,方法引用就是Lambda表达式,也就是函数式接口的一个实例,通过方法的名字来指向一个方法,可以认为是Lambda表达式的一个语法糖
要求:实现接口的抽象方法的参数列表和返回值类型,必须与方法引用的方法的参数列表和返回值类型保持一致
格式:使用操作符::
将类或对象与方法名分割开来
有如下三种使用情况
对象::实例方法名
类::静态方法名
类::实例方法名
方法引用的使用情况
方法引用的使用
使用情境:当要传递给Lambda体的操作,已经有实现的方法了,可以使用方法引用!
方法引用,本质上就是Lambda表达式,而Lambda表达式作为函数式接口的实例。所以方法引用,也是函数式接口的实例。
使用格式: 类(或对象) :: 方法名
具体分为如下的三种情况:
情况1:对象 :: 非静态方法
情况2:类 :: 静态方法
情况3:类 :: 非静态方法
方法引用使用的要求:要求接口中的抽象方法的形参列表和返回值类型与方法引用的方法的形参列表和返回值类型相同!(针对于情况1和情况2)
先写一个实体类,建议不要加额外的字段,只用这两个字段就够了
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 public class Stu { private String name; private Integer id; public String getName () { return name; } public void setName (String name) { this .name = name; } public Integer getId () { return id; } public void setId (Integer id) { this .id = id; } public Stu (String name, Integer id) { this .name = name; this .id = id; } }
情况一:
对象::非静态方法,抽象方法
的形参列表
和返回值类型
与方法引用
的方法的形参列表
和返回值类型``相同
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 JAVA 复制成功 @Test public void test06 () { Consumer<String> consumer01 = s -> System.out.println(s); consumer01.accept("她的手只有我的手四分之三那麼大" ); System.out.println("-----------------------------" ); PrintStream printStream = System.out; Consumer<String> consumer02 = printStream::println; consumer02.accept("可我還是沒能抓住" ); System.out.println("-----------------------------" ); Consumer<String> consumer03 = System.out::println; consumer03.accept("花落下的时候没死 风捡起花 又丢下 花才死了" ); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 JAVA @Test public void test07 () { Comparator<Integer> comparator01 = (o1, o2) -> Integer.compare(o1, o2); System.out.println(comparator01.compare(20 , 77 )); System.out.println("----------------------------" ); Comparator<Integer> comparator02 = Integer::compare; System.out.println(comparator02.compare(94 , 21 )); } @Test public void test08 () { Function<Double,Long> function01 = aDouble -> Math.round(aDouble); System.out.println(function01.apply(3.141 )); System.out.println("------------------------------" ); Function<Double,Long> function02 = Math::round; System.out.println(function02.apply(2.717 )); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 JAVA @Test public void test09 () { Comparator<Integer> comparator01 = (o1, o2) -> o1.compareTo(o2); System.out.println(comparator01.compare(94 , 21 )); System.out.println("---------------------------" ); Comparator<Integer> comparator02 = Integer::compareTo; System.out.println(comparator02.compare(43 , 96 )); } @Test public void test10 () { BiPredicate<String,String> biPredicate01 = (o1, o2) -> o1.equals(o2); System.out.println(biPredicate01.test("Kyle" , "Kyle" )); System.out.println("----------------------------------" ); BiPredicate<String,String> biPredicate02 = String::equals; System.out.println(biPredicate02.test("Violet" , "Violet" )); } @Test public void test11 () { Stu student = new Stu ("Kyle" , 9527 ); Function<Stu,String> function01 = stu -> stu.toString(); System.out.println(function01.apply(student)); System.out.println("------------------------------" ); Function<Stu,String> function02 = Stu::toString; System.out.println(function02.apply(student)); }
构造器引用和数组引用的使用
与函数式接口相结合,自动与函数式接口中方法兼容。
可以把构造器引用赋值给定义的方法,要求构造器参数列表要与接口中抽象方法的参数列表一致!且方法的返回值即为构造器对应类的对象。
构造器引用
和方法引用类似,函数式接口的抽象方法的形参列表和构造器的形参列表一致。
抽象方法的返回值类型即为构造器所属的类的类型
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 JAVA @Test public void test12 () { BiFunction<String, Integer, Stu> function01 = (string, integer) -> new Stu (string, integer); System.out.println(function01.apply("Kyle" , 9527 )); System.out.println("-------------------------------" ); BiFunction<String, Integer, Stu> function02 = Stu::new ; System.out.println(function02.apply("Lucy" , 9421 )); }
数组引用
可以把数组看做是一个特殊的类,则写法与构造器引用一致。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 JAVA @Test public void test13 () { Function<Integer, String[]> function01 = (integer -> new String [integer]); System.out.println(Arrays.toString(function01.apply(5 ))); System.out.println("-----------------------------" ); Function<Integer, String[]> function02 = String[]::new ; System.out.println(Arrays.toString(function02.apply(7 ))); }
强大的Stream API Stream API概述
Java8中有两个最为重要的改变,第一个就是Lambda表达式,另外一个则是Stream API
Stream API(java.util.stream)把真正的函数式编程风格引入到Java中,这是目前为止对Java类库最好的补充,因为Stream API可以极大地提高程序员生产力,让程序员写出高效、简洁的代码
Stream是Java8 中处理集合的关键抽象概念,它可以指定你希望对集合进行的操作,可以执行非常复杂的查找、过滤和映射数据等操作。
使用Stream API 对集合数据进行操作,就类似于使用SQL 执行的数据库查询 ,也可以使用Stream API 来并行执行操作。简言之,Stream API 提供了一种高效且易于使用的处理数据的方式
为什么要使用Stream API
实际开发中,项目中多数数据源都是来自MySQL、Oracle 等。但现在数据源可以更多了,有MongDB、Redis等,而这些NoSQL的数据就需要Java层面去处理。我就是学完Redis再来补票的..
Stream 和Collection 集合的区别:Collection 是一种静态的内存数据结构 ,而Stream 是有关计算的 。前者是主要面向内存,存储在内存中,后者主要是面向CPU,通过CPU 实现计算(这也就是为什么一旦执行终止操作之后,Stream 就不能被再次使用,得重新创建一个新的流才行)
小结
Stream 关注的是对数据的运算,与CPU 打交道; 集合关注的是数据的存储,与内存打交道
Stream 自己不会存储数据; Stream 不会改变源对象,相反,他们会返回一个持有结果的新Stream Stream 操作是延迟执行的,这意味着他们会等到需要结果的时候才执行
Stream 执行流程
Stream实例化
一系列中间操作(过滤、映射、…)
终止操作
说明
一系列中间操作链,对数据源的数据进行处理
一旦执行终止操作,就执行中间操作链,并产生结果,之后,不会再被使用
Stream的实例化 新建测试数据类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 import java.util.ArrayList;import java.util.List;public class EmployeeData { public static List<Employee> getEmployees () { List<Employee> list = new ArrayList <>(); list.add(new Employee (1001 , "马化腾" , 34 , 6000.38 )); list.add(new Employee (1002 , "马云" , 12 , 9876.12 )); list.add(new Employee (1003 , "刘强东" , 33 , 3000.82 )); list.add(new Employee (1004 , "雷军" , 26 , 7657.37 )); list.add(new Employee (1005 , "李彦宏" , 65 , 5555.32 )); list.add(new Employee (1006 , "比尔盖茨" , 42 , 9500.43 )); list.add(new Employee (1007 , "任正非" , 26 , 4333.32 )); list.add(new Employee (1008 , "扎克伯格" , 35 , 2500.32 )); return list; } }
1 2 3 4 5 6 7 8 9 JAVA @Test public void test14 () { List<Employee> employees = EmployeeData.getEmployees(); Stream<Employee> stream = employees.stream(); Stream<Employee> employeeStream = employees.parallelStream(); }
1 2 3 4 5 6 7 8 9 10 11 12 13 JAVA @Test public void test15 () { int [] arr = new int []{1 , 3 , 5 , 7 , 9 , 2 , 4 , 6 , 8 }; IntStream stream = Arrays.stream(arr); Employee kyle = new Employee (9527 , "Kyle" ); Employee lucy = new Employee (9421 , "Lucy" ); Employee[] employees = {kyle, lucy}; Stream<Employee> stream1 = Arrays.stream(employees); }
创建Stream方式三:
通过Stream的of()
1 2 3 4 5 JAVA @Test public void test16 () { Stream<Integer> stream = Stream.of(2 , 4 , 6 , 8 , 1 , 3 , 5 , 7 ); }
创建Stream方式四:
创建无限流 如果不用limit限制输出,则会一直输出下去,forEach就相当于是终止操作
1 2 3 4 5 6 7 8 9 10 11 12 13 14 JAVA @Test public void test17 () { Stream.iterate(0 , t -> t + 1 ).limit(10 ).forEach(System.out::println); Stream.generate(Math::random).limit(10 ).forEach(System.out::println); }
筛选与切片
多个中间操作可以连接起来形成一个流水线,除非流水线上触发终止操作,否则中间操作不会执行任何的处理,而在终止操作时一次性全部处理,称为惰性求值
方法
描述
filter(Predicate p)
接收Lambda ,从流中排除某些元素
distinct()
筛选,通过流所生成元素的hashCode() 和equals() 去除重复元素
limit(long maxSize)
截断流,使其元素不超过给定数量
skip(long n)
跳过元素,返回一个扔掉了前n 个元素的流。若流中元素不足n 个,则返回一个空流。与limit(n)互补
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 @Test public void test18 () { List<Employee> employees = EmployeeData.getEmployees(); employees.stream().filter(employee -> employee.getSalary() > 7000 ).forEach(System.out::println); System.out.println("----------------------------" ); employees.stream().limit(3 ).forEach(System.out::println); System.out.println("----------------------------" ); employees.stream().skip(3 ).forEach(System.out::println); System.out.println("----------------------------" ); employees.add(new Employee (9527 , "Kyle" , 20 , 9999 )); employees.add(new Employee (9527 , "Kyle" , 20 , 9999 )); employees.add(new Employee (9527 , "Kyle" , 20 , 9999 )); employees.add(new Employee (9527 , "Kyle" , 20 , 9999 )); employees.add(new Employee (9527 , "Kyle" , 20 , 9999 )); employees.stream().distinct().forEach(System.out::println); }
映射
方法
描述
map(Function f)
接收一个函数作为参数,该函数会被应用到每个元素上,并将其映射成一个新的元素。
mapToDouble(ToDoubleFunction f)
接收一个函数作为参数,该函数会被应用到每个元素上,产生一个新的DoubleStream。
mapToInt(ToIntFunction f)
接收一个函数作为参数,该函数会被应用到每个元素上,产生一个新的IntStream。
mapToLong(ToLongFunction f)
接收一个函数作为参数,该函数会被应用到每个元素上,产生一个新的LongStream。
flatMap(Function f)
接收一个函数作为参数,将流中的每个值都换成另一个流,然后把所有流连接成一个流
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 @Test public void test19 () { List<String> strings = Arrays.asList("aa" , "bb" , "cc" , "dd" ); List<Employee> employees = EmployeeData.getEmployees(); strings.stream().map(s -> s.toUpperCase()).forEach(System.out::println); System.out.println("--------------------------" ); employees.stream().map(Employee::getName). filter(name -> name.length() > 3 ). forEach(System.out::println); System.out.println("--------------------------" ); strings.stream().map(LambdaTest::formStringToStream). forEach(characterStream -> characterStream.forEach(System.out::println)); System.out.println("--------------------------" ); strings.stream().flatMap(LambdaTest::formStringToStream).forEach(System.out::println); } public static Stream<Character> formStringToStream (String str) { ArrayList<Character> list = new ArrayList <>(); for (char c : str.toCharArray()) { list.add(c); } return list.stream(); }
排序
方法
描述
sorted()
产生一个新流,其中按自然顺序排序
sorted(Comparator com)
产生一个新流,其中按比较器顺序排序
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 JAVA @Test public void test20 () { List<Integer> nums = Arrays.asList(13 , 54 , 97 , 52 , 43 , 64 , 27 ); List<Employee> employees = EmployeeData.getEmployees(); nums.stream().sorted().forEach(System.out::println); employees.stream().sorted((o1, o2) -> { int compare = Integer.compare(o1.getAge(), o2.getAge()); if (compare != 0 ) { return compare; } else { return -Double.compare(o1.getSalary(), o2.getSalary()); } }).forEach(System.out::println); }
匹配与查找
终端操作会从流的流水线生成结果。其结果可以是任何不是流的值,例如:List、Integer,甚至是void 。
流进行了终止操作后,不能再次使用。
方法
描述
allMatch(Predicate p)
检查是否匹配所有元素
anyMatch(Predicate p)
检查是否至少匹配一个元素
noneMatch(Predicate p)
检查是否没有匹配所有元素
findFirst()
返回第一个元素
findAny()
返回当前流中的任意元素
count()
返回流中元素总数
max(Comparator c)
返回流中最大值
min(Comparator c)
返回流中最小值
forEach(Consumer c)
内部迭代(使用Collection 接口需要用户去做迭代,称为外部迭代。相反,Stream API 使用内部迭代——它帮你把迭代做了)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 @Test public void test21 () { List<Employee> employees = EmployeeData.getEmployees(); System.out.println("是否所有的员工的工资是否都大于5000:" +employees.stream().allMatch(employee -> employee.getSalary() > 5000 )); System.out.println("是否存在员工年龄小于15:" +employees.stream().anyMatch(employee -> employee.getAge() < 15 )); System.out.println("是否不存在员工姓马:" +employees.stream().noneMatch(employee -> employee.getName().startsWith("马" ))); System.out.println("返回第一个元素:" +employees.stream().findFirst()); System.out.println("返回当前流中的任意元素" +employees.stream().findAny()); System.out.println("返回元素总数:" +employees.stream().count()); System.out.println("返回最高工资:" +employees.stream().map(Employee::getSalary).max(Double::compare)); System.out.println("返回最小年龄:" +employees.stream().map(Employee::getAge).min(Integer::compare)); employees.stream().forEach(System.out::println); System.out.println("-------------" ); employees.forEach(System.out::println); }
归约
方法
描述
reduce(T iden, BinaryOperator b)
可以将流中元素反复结合起来,得到一个值。返回T
reduce(BinaryOperator b)
可以将流中元素反复结合起来,得到一个值。返回Optional
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 JAVA @Test public void test22 () { List<Integer> nums = Arrays.asList(13 , 32 , 23 , 31 , 94 , 20 , 77 , 21 , 17 ); List<Employee> employees = EmployeeData.getEmployees(); System.out.println(nums.stream().reduce(0 , Integer::sum)); System.out.println(employees.stream().map(Employee::getSalary).reduce((o1, o2) -> o1 + o2)); System.out.println(employees.stream().map(Employee::getAge).reduce(Integer::sum)); }
收集
方法
描述
collect(Collector c)
将流转换为其他形式。接收一个Collector接口的实现,用于给Stream中元素做汇总的方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 @Test public void test23 () { List<Employee> employees = EmployeeData.getEmployees(); List<Employee> list = employees.stream().filter(employee -> employee.getSalary() > 6000 ).collect(Collectors.toList()); list.forEach(System.out::println); System.out.println("--------------------" ); employees.add(new Employee (9527 ,"Kyle" ,21 ,9999 )); employees.add(new Employee (9527 ,"Kyle" ,21 ,9999 )); employees.add(new Employee (9527 ,"Kyle" ,21 ,9999 )); employees.add(new Employee (9527 ,"Kyle" ,21 ,9999 )); Set<Employee> set = employees.stream().filter(employee -> employee.getAge() > 20 ).collect(Collectors.toSet()); set.forEach(System.out::println); }
Collector 接口中方法的实现决定了如何对流执行收集的操作(如收集到List、Set、Map)。
Collectors实用类提供了很多静态方法,可以方便地创建常见收集器实例,具体方法与实例如下表:
方法
返回类型
作用
toList
List
把流中元素收集到List
List emps= list.stream().collect(Collectors.toList());
toSet
List
把流中元素收集到List
Set emps= list.stream().collect(Collectors.toSet());
toCollection
Collection
把流中元素收集到创建的集合
Collection emps =list.stream().collect(Collectors.toCollection(ArrayList::new));
counting
Long
计算流中元素的个数
long count = list.stream().collect(Collectors.counting());
summinglnt
Integer
对流中元素的整数属性求和
int total=list.stream().collect(Collectors.summingInt(Employee::getSalary));
averagingInt
Double
计算流中元素Integer属性的平均值
double avg = list.stream().collect(Collectors.averagingInt(Employee::getSalary));
summarizinglnt
IntSummaryStatistics
收集流中Integer属性的统计值。如:平均值
int SummaryStatisticsiss=list.stream().collect(Collectors.summarizingInt(Employee::getSalary));
joining
String
连接流中每个字符串
String str= list.stream().map(Employee::getName).collect(Collectors.joining());
maxBy
Optional
根据比较器选择最大值
optionalmax=list.stream().collect(Collectors.maxBy(comparingInt(Employee::getSalary));
minBy
Optional
根据比较器选择最小值
Optionalmin = list.stream().collect(Collectors.minBy(comparingInt(Employee::getSalary));
reducing
归约产生的类型
从一个作为累加器的初始值开始,利用BinaryOperator与流中元素逐个结合,从而归约成单个值
int total=list.stream().collect(Collectors.reducing(0, Employe::getSalar, Integer::sum));
collectingAndThen
转换函数返回的类型
包裹另一个收集器,对其结果转换函数
int how= list.stream().collect(Collectors.collectingAndThen(Collectors.toList(), List::size));
groupingBy
Map<K, List>
根据某属性值对流分组,属性为K,结果为V
Map<Emp.Status, List>map= list.stream().collect(Collectors.groupingBy(Employee::getStatus));
partitioningBy
Map<Boolean,List>
根据true或false进行分区
Map<Boolean,List>vd=list.stream().collect(Collectors.partitioningBy(Employee::getManage));
Optional类 简介
到目前为止,臭名昭著的空指针异常是导致Java应用程序失败的最常见原因。以前,为了解决空指针异常,Google公司著名的Guava项目引入了Optional类,Guava通过使用检查空值的方式来防止代码污染,它鼓励程序员写更干净的代码。受到Google Guava的启发,Optional类已经成为Java 8类库的一部分。
Optional 类(java.util.Optional) 是一个容器类,它可以保存类型T的值,代表这个值存在。或者仅仅保存null,表示这个值不存在。原来用null 表示一个值不存在,现在Optional 可以更好的表达这个概念。并且可以避免空指针异常。
Optional类的Javadoc描述如下:这是一个可以为null的容器对象。如果值存在则isPresent()方法会返回true,调用get()方法会返回该对象。
Optional提供很多有用的方法,这样我们就不用显式进行空值检测。
创建Optional类对象的方法:
Optional.of(T t): 创建一个Optional 实例,t必须非空;
Optional.empty() : 创建一个空的Optional 实例
Optional.ofNullable(T t):t可以为null
判断Optional容器中是否包含对象:
boolean isPresent() : 判断是否包含对象
void ifPresent(Consumer<? super T> consumer) :如果有值,就执行Consumer接口的实现代码,并且该值会作为参数传给它。
获取Optional容器的对象:
T get(): 如果调用对象包含值,返回该值,否则抛异常
T orElse(T other) :如果有值则将其返回,否则返回指定的other对象。
T orElseGet(Supplier<? extends T> other) :如果有值则将其返回,否则返回由Supplier接口实现提供的对象。
T orElseThrow(Supplier<? extends X> exceptionSupplier) :如果有值则将其返回,否则抛出由Supplier接口实现提供的异常。
Boy类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 JAVA public class Boy { private Girl girl; public Boy () { } public Boy (Girl girl) { this .girl = girl; } public Girl getGirl () { return girl; } public void setGirl (Girl girl) { this .girl = girl; } @Override public String toString () { return "Boy{" + "girl=" + girl + '}' ; } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 JAVA public class Girl { private String name; public Girl () { } public Girl (String name) { this .name = name; } public String getName () { return name; } public void setName (String name) { this .name = name; } @Override public String toString () { return "Girl{" + "name='" + name + '\'' + '}' ; } }
测试类
Optional类:为了在程序中避免出现空指针异常而创建的。
常用的方法
ofNullable(T t)
orElse(T t)
Optional.of(T t) : 创建一个 Optional 实例,t必须非空;
Optional.empty() : 创建一个空的 Optional 实例
Optional.ofNullable(T t):t可以为null
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 JAVA @Test public void test () { Girl girl = new Girl (); Optional<Girl> optionalGirl = Optional.of(girl); } @Test public void test25 () { Girl girl = new Girl (); Optional<Girl> optionalGirl = Optional.ofNullable(girl); System.out.println(optionalGirl); Girl girl1 = optionalGirl.orElse(new Girl ("" )); System.out.println(girl1); }
使用举例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 JAVA @Test public void test26 () { Boy boy = new Boy (); boy = null ; String girlName = getGirlName(boy); System.out.println(girlName); } private String getGirlName (Boy boy) { return boy.getGirl().getName(); } public String getGirlName1 (Boy boy) { if (boy != null ){ Girl girl = boy.getGirl(); if (girl != null ){ return girl.getName(); } } return null ; } @Test public void test27 () { Boy boy = new Boy (); boy = null ; String girlName = getGirlName1(boy); System.out.println(girlName); } public String getGirlName2 (Boy boy) { Optional<Boy> boyOptional = Optional.ofNullable(boy); Boy boy1 = boyOptional.orElse(new Boy (new Girl ("樱岛麻衣" ))); Girl girl = boy1.getGirl(); Optional<Girl> girlOptional = Optional.ofNullable(girl); Girl girl1 = girlOptional.orElse(new Girl ("喜多川海梦" )); return girl1.getName(); } @Test public void test28 () { Boy boy = null ; boy = new Boy (); boy = new Boy (new Girl ("Lucy" )); String girlName = getGirlName2(boy); System.out.println(girlName); }
Optional其实用的并不多,我们稍作了解即可,部分底层源码可能会用到Optional
完结撒花 在Redis中学到的一些使用的方法
1 2 3 4 5 6 7 8 9 10 11 List<User> users = userService.listByIds(ids); List<UserDTO> userDTOS = new ArrayList <>(); for (User u : users){ UserDTO userDTO = BeanUtil.copyProperties(u, UserDTO.class); userDTOS.add(userDTO); }
用map做一个映射,括号中写出映射规则
collect接受汇总,为List集合再返回