函数接口是一种只包含抽象方法的接口。Java 为常见操作提供了几个预定义的函数接口,如谓词、函数和消费。
常用的方法
以下是如何使用的 Predicate、Function 和 Consumer 函数接口的一些常用方法示例:
Predicate:
立即学习“Java免费学习笔记(深入);
- test(T t): 返回一个布尔值表示函数接口上应用的对象是否符合条件。
Function:
- apply(T t): 返回一个值表示将函数接口应用于对象的结果。
- compose(Function before): 返回一个新的函数接口,首先调用它 before 并将结果应用于 apply。
- andThen(Function
after): 返回一个新的函数接口,首先调用它 apply,然后将结果应用于 after。
Consumer:
- accept(T t): 对一个对象进行操作,但没有返回值。
实战案例
Predicate:
立即学习"Java免费学习笔记(深入);
Predicate<String> isPalindrome = string -> string.equalsIgnoreCase(new StringBuilder(string).reverse().toString()); List<String> words = List.of("apple", "kayak", "banana", "racecar"); List<String> palindromes = words.stream() .filter(isPalindrome) .toList(); System.out.println(palindromes); // [apple, kayak, racecar]
Function:
Function<Integer, Integer> square = number -> number * number; List<Integer> numbers = List.of(1, 2, 3, 4, 5); List<Integer> squares = numbers.stream() .map(square) .toList(); System.out.println(squares); // [1, 4, 9, 16, 25]
Consumer:
Consumer<String> print = string -> System.out.println(string); List<String> words = List.of("Hello", "World", "Java"); words.forEach(print); // 输出: // Hello // World // Java
以上就是什么 Java 函数接口的可用方法?详情请关注图灵教育的其他相关文章!