java 8 复合Lambda 表达式

comparator  比较器复合java

//排序

Comparator.comparing(Apple::getWeight);
List<Apple> list = Stream.of(new Apple(1, "a"), new Apple(2, "b"), new Apple(3, "c"))
        .collect(Collectors.toList());

list.sort(Comparator.comparing(Apple::getWeight));  //按重量排序

list.stream()
        .sorted(Comparator.comparing(Apple::getName))
        .collect(Collectors.toList());

//先按重量倒序,若是重量同样,再按名称排序
list.sort(Comparator.comparing(Apple::getWeight)
        .reversed()
        .thenComparing(Apple::getName));

 

Predicate 谓词 复合app

//判断是苹果b
Predicate<Apple> isBApple = apple -> Objects.equals("b", apple.getName());

isBApple.negate();      //不是苹果b


//不是苹果b,而且苹果重量大于1  -->  apple.name != "b" && apple.weight > 1
isBApple.negate().and(apple -> apple.getWeight() > 1);

// ((apple.name != "b") && apple.weight > 1)  or apple.weight==0
isBApple.negate()
        .and(apple -> apple.getWeight() > 1)
        .or(apple -> apple.getWeight()==0);

Function 函数复合函数

//f(x) = x+1
Function<Integer, Integer> f = x -> x + 1;
//g(x) = x*2
Function<Integer, Integer> g = x -> x * 2;
// g(f(x))
Function<Integer, Integer> h = f.andThen(g);
// f(g(x))
Function<Integer, Integer> z = f.compose(g);
相关文章
相关标签/搜索