码迷,mamicode.com
首页 > 其他好文 > 详细

谓词复合

时间:2018-09-03 02:17:29      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:png   new   eric   分享   info   pac   filter   技术分享   dem   

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()));
    }
}

技术分享图片

谓词复合

标签:png   new   eric   分享   info   pac   filter   技术分享   dem   

原文地址:https://www.cnblogs.com/i-hard-working/p/9575862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!