Java 8 函数式接口:简化代码,提升表达力

在 Java 8 中,函数式接口是一个关键的特性,它们允许将方法作为参数传递或返回类型,从而提高代码的模块性和灵活性。下面是一些常见的函数式接口的实例代码。

1. Consumer<T>

Consumer<T> 接口代表一个接受单个输入参数且不返回结果的操作。它常用于对对象执行操作。

java 复制代码
import java.util.function.Consumer;

Consumer<String> printConsumer = System.out::println;
printConsumer.accept("Hello, World!");

2. Supplier<T>

Supplier<T> 接口提供一个没有参数的方法并返回一个泛型类型的结果。它通常用于延迟计算或构造。

java 复制代码
import java.util.function.Supplier;

Supplier<Double> randomSupplier = Math::random;
System.out.println(randomSupplier.get());

3. Function<T,R>

Function<T,R> 接口表示接受一个参数并产生结果的函数。这是一个非常通用的接口。

java 复制代码
import java.util.function.Function;

Function<String, Integer> lengthFunction = String::length;
System.out.println(lengthFunction.apply("Hello"));

4. Predicate<T>

Predicate<T> 接口表示一个参数的布尔值函数。

java 复制代码
import java.util.function.Predicate;

Predicate<String> nonEmptyStringPredicate = (String s) -> !s.isEmpty();
System.out.println(nonEmptyStringPredicate.test("Test"));

5.使用 Function<T,R> 进行函数组合

java 复制代码
Function<Integer, Integer> times2 = e -> e * 2;
Function<Integer, Integer> squared = e -> e * e;

Function<Integer, Integer> times2AndSquare = times2.andThen(squared);
System.out.println(times2AndSquare.apply(4)); // 输出 64

6.使用 Predicate<T> 进行逻辑组合

java 复制代码
Predicate<Integer> isEven = x -> x % 2 == 0;
Predicate<Integer> isPositive = x -> x > 0;

Predicate<Integer> isEvenAndPositive = isEven.and(isPositive);
System.out.println(isEvenAndPositive.test(4)); // true

7. UnaryOperator<T>

UnaryOperator<T>Function<T, T> 的一个特例,用于操作单个操作数,其类型与结果类型相同。

java 复制代码
import java.util.function.UnaryOperator;

UnaryOperator<Integer> square = x -> x * x;
System.out.println(square.apply(5)); // 输出 25

8. BiFunction<T, U, R>

BiFunction<T, U, R> 接口表示接受两个参数并产生结果的函数。

java 复制代码
import java.util.function.BiFunction;

BiFunction<Integer, Integer, Integer> add = (a, b) -> a + b;
System.out.println(add.apply(2, 3)); // 输出 5

9. BinaryOperator<T>

BinaryOperator<T>BiFunction<T, T, T> 的一个特例,用于操作两个相同类型的操作数并返回相同类型的结果。

java 复制代码
import java.util.function.BinaryOperator;

BinaryOperator<Integer> multiply = (a, b) -> a * b;
System.out.println(multiply.apply(3, 4)); // 输出 12

10.使用 Function<T, R> 创建工厂方法

java 复制代码
import java.util.HashMap;
import java.util.Map;
import java.util.function.Function;

class ComplexClass {
    private int value;

    ComplexClass(int value) {
        this.value = value;
    }

    // Getter and other methods...
}

Function<Integer, ComplexClass> complexClassFactory = ComplexClass::new;
ComplexClass complexInstance = complexClassFactory.apply(10);

11.UnaryOperator<T> 创建连续操作

java 复制代码
UnaryOperator<String> toUpperCase = String::toUpperCase;
UnaryOperator<String> addExclamation = str -> str + "!";

UnaryOperator<String> shout = toUpperCase.andThen(addExclamation);
System.out.println(shout.apply("hello")); // 输出 "HELLO!"

12. BiConsumer<T, U>

BiConsumer<T, U> 接口表示接受两个输入参数的操作,并且不返回任何结果。

java 复制代码
import java.util.function.BiConsumer;

BiConsumer<String, String> concatAndPrint = (a, b) -> System.out.println(a + b);
concatAndPrint.accept("Hello, ", "World!"); // 输出 Hello, World!

13. BiPredicate<T, U>

BiPredicate<T, U> 接口表示接受两个参数的布尔值函数。

java 复制代码
import java.util.function.BiPredicate;

BiPredicate<Integer, String> validate = (i, s) -> i > 0 && s.startsWith("A");
System.out.println(validate.test(1, "Apple")); // 输出 true

14. ToIntFunction<T>

ToIntFunction<T> 接口表示将一个对象转换为一个原始 int 类型的函数。

java 复制代码
import java.util.function.ToIntFunction;

ToIntFunction<String> length = String::length;
System.out.println(length.applyAsInt("Hello")); // 输出 5

通过这些特性,Java 8 的函数式接口极大地提升了代码的简洁性和可读性,同时也促进了函数式编程范式在 Java 社区中的普及。

相关推荐
篱笆院的狗11 分钟前
Java 中的 DelayQueue 和 ScheduledThreadPool 有什么区别?
java·开发语言
2501_9418091415 分钟前
面向多活架构与数据地域隔离的互联网系统设计思考与多语言工程实现实践分享记录
java·开发语言·python
村口曹大爷27 分钟前
2026年人工智能深度技术报告:架构范式转移、代理化开发生态与算力经济的重构
人工智能·重构·架构
qualifying1 小时前
JavaEE——多线程(4)
java·开发语言·java-ee
better_liang1 小时前
每日Java面试场景题知识点之-DDD领域驱动设计
java·ddd·实体·领域驱动设计·架构设计·聚合根·企业级开发
li.wz1 小时前
Spring Bean 生命周期解析
java·后端·spring
小股虫1 小时前
主流注册中心技术选型:CAP理论与业务实战的平衡艺术
分布式·微服务·架构
czlczl200209251 小时前
深入解析 ThreadLocal:架构演进、内存泄漏与数据一致性分析
java·jvm·架构
赵文宇(温玉)2 小时前
免费|不限速|不限流量|多架构|容器镜像服务---第1批同步:Docker官方维护的143个library镜像仓库
docker·容器·架构
盖世英雄酱581362 小时前
不是所有的this调用会导致事务失效
java·后端