# 函数式接口概述

  1. 定义:有且只有一个抽象方法
  2. 注解: @FunctionalInterface
  3. 函数是接口作为参数:Lambda 表达式作为参数传递
  4. 函数式接口作为返回值:Lambda 表达式作为结果返回

# Supplier 接口

  1. Supplier<T> :结果供应商
  2. 指定类型,就能得到 get 此类型的值
  3. 方法: T get()
public static void main(String[] args) {
    int i = doSupplier(() -> 123);
    System.out.println(i);
}
public static int doSupplier(Supplier<Integer> s) {
    return s.get() + 321;
}

# Consumer 接口

  1. Consumer<T> :消费型接口
  2. 方法:
    1. void accept(T t) :执行操作
    2. andThen(...) :组合操作
public static void main(String[] args) {
    doConsumer("baozi",System.out::println);
}
public static void doConsumer(String name, Consumer<String> con) {
    con.accept(name);
}

# Predicate 接口

  1. Predicate <T>
  2. 方法:
    1. boolean test(T t) :对给定的参数进行判断(判断逻辑由 Lambda 表达式实现,返回布尔值)
    2. negate() :返回一个逻辑的否定,对应逻辑非
    3. and(Predicate other) :返回一个组合判断,对应短路与
    4. or(Predicate other) :返回一个组合判断,对应短路或

# Function 接口 `

  1. Function<T,R> :通常对参数进行处理,转换(处理逻辑由 Lambda 表达式实现),然后返回一个新值的方法:
    1. Raooly(T t) :将此函数应用于给定的参数
    2. default <V> Function andThen(Function after) :返回一个组合函数,首先应将函数应用输入,然后将 after 函数用于结果
更新于 阅读次数

请我喝[茶]~( ̄▽ ̄)~*

Baozi 微信支付

微信支付

Baozi 支付宝

支付宝

Baozi 微信

微信