Supplier

1,

@FunctionalInterface
public interface Supplier<T> {

2,    T get();

3,

Supplier<Apple> c1 = Apple::new
Apple a1 = c1.get();

consumer接口

1,

@FunctionalInterface
public interface Consumer<T> {

2,void accept(T t);

3,主要用来输出的

Java8实战,-LMLPHP

function 接口

1,public interface Function<T, R> {

2,T apply(F input);

3,主要是用来转换东西的

4,函数复合,

  • andThen    f.andThen(g)    数学上会写作g(f(x))
  • compose   f.compose(g);   数学上会写作f(g(x))

Predicate接口

1,充当一个参数化的返回Boolean比较方法

2,public interface Predicate<T> {

3,boolean test(T t);

4,能动态替换返回boolean的函数

5,基本类型装箱问题,

DoublePredicate
boolean test(double value);//有对应的原始类型特化接口

Java8实战,-LMLPHP

Java8实战,-LMLPHP

Java8实战,-LMLPHP

6,谓词复合,优先级从左到右a.or(b).and(c)  ==  (a || b )&& c

  • negate()
  • and()
  • or()

lambda用法

1,

Java8实战,-LMLPHP

Java8实战,-LMLPHP

2,

Java8实战,-LMLPHP

Java8实战,-LMLPHP

3,

Java8实战,-LMLPHP

Java8实战,-LMLPHP

4,基本lambda语法

Java8实战,-LMLPHP

5,基本用法

Java8实战,-LMLPHP

6,在面向资源编程的lambda,不需要重复打开资源和关闭资源

Java8实战,-LMLPHP

Java8实战,-LMLPHP

Java8实战,-LMLPHP

7,lambda也有匿名函数的问题

Java8实战,-LMLPHP

8,方法引用

  • 静态方法引用,(例如Integer的parseInt方法,写作Integer::parseInt)。
  • 实例方法引用,(例如String的length,String::length
  • 方法体里面的方法引用,进一步的方法引用

Java8实战,-LMLPHP

Java8实战,-LMLPHP

9,比较器复合

  • 翻转:list.sort(comparing(Object::getXXX).reveserd());
  • 同样的时候添加第二个比较器,第二个是comparator类型, list.sort(Comparator.comparing(Integer::intValue).reversed().thenComparing(Integer::compareTo));

stream

1,更加简单的利用多cpu

Java8实战,-LMLPHP

Java8实战,-LMLPHP

Java8实战,-LMLPHP

Java8实战,-LMLPHP

Java8实战,-LMLPHP

2,基本概念

 流是“从支持数据处理操作的源生成的一系列元素”。
 流利用内部迭代:迭代通过filter、map、sorted等操作被抽象掉了。
 流操作有两类:中间操作和终端操作。
 filter和map等中间操作会返回一个流,并可以链接在一起。可以用它们来设置一条流 水线,但并不会生成任何结果。
 forEach和count等终端操作会返回一个非流的值,并处理流水线以返回结果。  流中的元素是按需计算的。
3,filter,筛选和切片
4,limit,skip
5,map,映射
  • flatMap
  • Java8实战,-LMLPHP
  • Java8实战,-LMLPHP
  • Java8实战,-LMLPHP

6,查找和匹配

  • anyMatch方法返回一个boolean,因此是一个终端操作。
    if(menu.stream().anyMatch(Dish::isVegetarian)){
    System.out.println("The menu is (somewhat) vegetarian friendly!!"); }  

  • allMatch方法的工作原理和anyMatch类似,但它会看看流中的元素是否都能匹配给定的谓
  boolean isHealthy = menu.stream().allMatch(d -> d.getCalories() < 1000); 
  • 和allMatch相对的是noneMatch。
  boolean isHealthy = menu.stream()

  .noneMatch(d -> d.getCalories() >= 1000);

  • findFirst和findAny

7,归约

  • reduce ,

    累加:int sum = numbers.stream().reduce(0, Integer::sum);

   最大最小值:Optional min = numbers.stream().reduce(Integer::min);

8,并发的有状态和无状态

Java8实战,-LMLPHP

9,优化自动装箱,

  • int calories = menu.stream()  .mapToInt(Dish::getCalories)  .sum();
  • 自动装箱

    IntStream intStream = menu.stream().mapToInt(Dish::getCalories)
    Stream<Integer> stream = intStream.boxed();

10,小结

Java8实战,-LMLPHP

11,collect

Java8实战,-LMLPHP

Java8实战,-LMLPHP

Java8实战,-LMLPHP

Java8其他

1,default <V> Function<V, R> compose(Function<? super V, ? extends T> before) {

  可以添加默认实现

2,在 java8 中的接口中不仅增加了默认方法,还增加了静态方法。使用方式接口名.方法名。

3,

@FunctionalInterface
public interface Runnable {表明是个函数接口

Java8重构小实例

1,策略模式,类似predicate替换策略

2,模板方法,

3,观察者模式,注册的时候写上方法

4,责任链模式,在注册的时候像观察者模式差不多

5,传统简单工厂,用map和supplier

05-27 11:11