谓词复合

Posted i-hard-working

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了谓词复合相关的知识,希望对你有一定的参考价值。

package com.ant.jdk8.chap03;

import java.util.Arrays;
import java.util.List;
import java.util.function.Predicate;

public class PredicateCompositeDemo {
    public static void main(String[] args) {
        List<Apple> apples = Arrays.asList(
                new Apple("green",200,"China"),
                new Apple("green",130,"Japan"),
                new Apple("red",150,"America"),
                new Apple("brown",170,"Thailand"));
        Predicate<Apple> redPredicate = apple->"red".equals(apple.getColor());
        Predicate<Apple> notRedAndHeavyPredicate = redPredicate.negate().and(a->a.getWeight()>150);
        apples.stream().filter(notRedAndHeavyPredicate).
                forEach(a-> System.out.println(a.getColor()+"->"+a.getCountry()+"->"+a.getWeight()));
    }
}

技术分享图片

以上是关于谓词复合的主要内容,如果未能解决你的问题,请参考以下文章

iOS Swift 复合谓词

复合谓词不返回结果

谓词复合

XPath - 复合谓词 + 测试值是不是不以某事开头

快速,在具有复合谓词的提取结果控制器中找不到实体的键路径

Android 片段与复合控件