仅包含一个抽象方法

用 @FunctionalInterface 注解检查

将函数对象归为一类之后,用 函数式接口 来表示他们的类型

被归为一类的函数对象,要:

  1. 参数个数类型相同
  2. 返回值类型相同

JDK 提供的常见函数式接口:

  1. Runnable () void

  2. Callable () T

  3. Comparator (T, T) int

  4. Consumer, BiConsumer, IntConsumer, LongConsumer, DoubleConsumer (T) void, Bi 是两参, Int 指参数是 int

  5. Function, BiFunction, Int Long Double …
    (T) R

  6. Predicate, BiPredicate, Int Long Double …
    (T) boolean

  7. Supplier, Int Long Double …
    () T

  8. UnaryOperator, BinaryOperator, Int Long Double …
    (T) T, Unary 一参

LambdaJava