【java21】java21新特性之记录模式

Java21引入的新特性------记录模式(Record Patterns),是对Java语言模式匹配功能的进一步扩展。

记录模式的定义与目的

记录模式是Java语言中的一个新特性,旨在简化和标准化对记录类实例的解构,允许程序员更加方便、安全地访问和操作记录类的组件。记录类本身是在Java 14中引入的,作为一种简化不可变数据类定义的方式。记录模式通过编译时检查确保访问的正确性,避免错误的字段访问或类型不匹配问题,并使代码更加简洁明了。

记录模式在if中的使用

java 复制代码
public static void testInIf(Object object) {
    if (object instanceof Points points) {
        System.out.println("pre jdk 19 object is a position, x = " + points.x()
                + ", y = " + points.y());
    }
    if (object instanceof Points(int x, int y)) {
        System.out.println("jdk 19 object is a position, x = " + x + ", y = " + y);
    }
}

记录模式在switch中的使用

java 复制代码
public static void testInSwitch(Object object) {
    switch (object) {
        case Points points -> System.out.println("pre jdk 19 object is a position, x = " + points.x() + ", y = " + points.y());
            default -> throw new IllegalStateException("Unexpected value: " + object);
    }
    switch (object) {
        case Points(int x, int y) -> System.out.println("jdk 19 object is a position, x = " + x + ", y = " + y);
            default -> throw new IllegalStateException("Unexpected value: " + object);
    }
}

记录模式的嵌套使用

java 复制代码
public static void testInNest(Object object) {
    if (object instanceof Line(Points(int x1, int y1), Points(int x2, int y2))){
        System.out.println("object is a path, x1 = " + x1 + ", y1 = " + y1 + ", x2 = " + x2 + ", y2 = " + y2);
    }
    switch (object) {
        case Line(Points(int x1, int y1), Points(int x2, int y2)) ->
            System.out.println("object is a path, x1 = " + x1 + ", y1 = " + y1 + ", x2 = " + x2 + ", y2 = " + y2);
            // other cases ...
            default -> throw new IllegalStateException("Unexpected value: " + object);
    }
}

记录模式的优势

清晰性:记录模式使代码更加简洁明了,减少了访问记录类字段的样板代码。

安全性:通过编译时检查确保访问的正确性,避免错误的字段访问或类型不匹配问题。

效率:编译器可以生成更高效的代码,因为模式匹配的意图明确,减少了运行时的开销。

相关推荐
David爱编程1 小时前
JDK vs JRE:到底有什么本质区别?99% 的人都答不上来
java·后端
洛阳泰山2 小时前
基于 Easy Rules 的电商订单智能决策系统:构建可扩展的业务规则引擎实践
java·开发语言·规则引擎·easy rules
THXW.2 小时前
【Java项目与数据库、Maven的关系详解】
java·数据库·maven
架构师沉默2 小时前
外卖平台每天1000万订单查询,是如何扛住高并发的?
java·后端·架构
kushu73 小时前
Java 包
java·开发语言
bug菌3 小时前
🤔领导突然考我Spring中的注解@Bean,它是做什么用的?我...
java·后端·spring
JavaArchJourney3 小时前
ArrayList 源码分析
java
寒士obj4 小时前
熟悉并使用Spring框架 - 注解篇
java·spring
BricheersZ4 小时前
LangChain4J-(1)-Hello World
java·人工智能·langchain
回家路上绕了弯4 小时前
Spring ApplicationContext 源码深度剖析:容器的核心引擎
java·spring