Java8已定义的函数式接口
Predicate
主要功能是验证数据
//源码
public interface Predicate<T> {
/**
* 制定检查模板
*/
boolean test(T t);
/**
* 得到相反结果
*/
default Predicate<T> negate() {
...
阅读全文…