java8的四大核心函数式接口 1.Consumer<T> : 消费型接口 void accept(T t); 2.Supplier<T> :供给型接口 T get(); 3.Function<T,R> R apply(T t); 4.Predicate<T> boolean test(T t); 使用跟其他函数式接口使用一致