6.1 BiFunction<T, U, R> 函数式接口
描述了参数类型为 T 和 U 而且返回类型为 R 的函数。
6.2 Predicate 函数式接口
public interface Predicate<T>{boolean test( T t );//其它的默认和抽象方法}
6.3 Supplier 函数式接口
public interface Supplier{T get();}
