仅包含一个抽象方法
用 @FunctionalInterface 注解检查
将函数对象归为一类之后,用 函数式接口 来表示他们的类型
被归为一类的函数对象,要:
- 参数个数类型相同
- 返回值类型相同
JDK 提供的常见函数式接口:
-
Runnable () → void
-
Callable () → T
-
Comparator (T, T) → int
-
Consumer, BiConsumer, IntConsumer, LongConsumer, DoubleConsumer (T) → void, Bi 是两参, Int 指参数是 int
-
Function, BiFunction, Int Long Double …
(T) → R -
Predicate, BiPredicate, Int Long Double …
(T) → boolean -
Supplier, Int Long Double …
() → T -
UnaryOperator, BinaryOperator, Int Long Double …
(T) → T, Unary 一参