Java8 内置的四大核心函数式接口
void accept(T t)
T get();
Function<T,R>:函数型接口
R apply(T t)
Predicate <T> :段言型接口
boolean test(T t)