page contents

JEP最新更新: 使用 Record 类来扩展 Java 中的模式匹配

JEP 405 中,Record Patterns (Preview),已经由 Proposed to Target 提升至 Targeted for JDK 19。基于 Project Amber 的保护,当前 JEP 提议使用 Record 模式来解构 Record 类,Record 可以与 type 模式结合使用,可实现稳健、声明性和可组合的数据导航和处理模式。

attachments-2022-06-uF2H9prx629c0884238a7.png

JEP 405 中,Record Patterns (Preview),已经由 Proposed to Target 提升至 Targeted for JDK 19。基于 Project Amber 的保护,当前 JEP 提议使用 Record 模式来解构 Record 类,Record 可以与 type 模式结合使用,可实现稳健、声明性和可组合的数据导航和处理模式。

JEP 394 中,JDK 提供的 instanceof 模式匹配,扩展了 instanceof 运算符,使其可以采用 type 模式并执行 type 匹配,具体示例如下:

public void print(Object o) { 
    if (o instanceof Double) { 
        Double d = (Double) o; 
        System.out.println("d = " + d); 
    } 
}

使用 type 匹配可以更改如下:

public void print(Object o) {
    if (o instanceof Double d) {
        System.out.println("d = " + d);
    }
}

上面的示例中,如果 o 是 Double 的实例,则 o 成功匹配 Double d。这减少了显示类型转换同时有效缩短了代码。

JEP 395,因此 Record 类,开发人员可以轻松的编写不可变的对象。

record Point(int x, int y) {}

使用 Record 类后,无需显示白那些构造函数、访问器方法和其他方法,例如 toString 和 hashCode。

代码中如果使用 Record 的实例,开发人员需要访问其访问器方法获取数据,例如:

public void printSum(Object o) {
    if (o instanceof Point p) {
        int x = p.x();
        int y = p.y();
        System.out.println(x + y);
    }
}

上面的代码中,模块变量 p 用于调用访问器方法 x()、y() 来获取 x 和 y 的值,使用 Record 后,将不再需要 p 变量。

public void printSum(Object o) {
   if (o instanceof Point(int x int y)) {
       System.out.println(x + y);
   }
}

开发人员解构更复杂的图对象也变得简单起来,例如下面案例:

enum Color {RED, GREEN, BLUE}
record ColoredPoint(Point p, Color color) {}
record Point(int x, int y) {}
record Square(ColoredPoint upperLeft, ColoredPoint lowerRight) {}

如果开发人员需要获取左上角的 ColoredPoint,使用如下方式进行解构即可:

public void printUpperLeftColoredPoint(Square s) {
    if (s instanceof Square(ColoredPoint(Point(var x, var y), var color), var lowerRight))){
    }
}

上面案例如果不使用 Record 模式,代码会非常繁杂和冗长。

更多相关技术内容咨询欢迎前往并持续关注六星社区了解详情。

想高效系统的学习Python编程语言,推荐大家关注一个公众号:Python编程学习圈。每天分享行业资讯、技术干货供大家阅读,关注即可免费领取整套Python入门到进阶的学习资料以及教程,感兴趣的小伙伴赶紧行动起来吧。

attachments-2022-05-rLS4AIF8628ee5f3b7e12.jpg

  • 发表于 2022-06-05 09:36
  • 阅读 ( 616 )
  • 分类:行业资讯

你可能感兴趣的文章

相关问题

0 条评论

请先 登录 后评论
轩辕小不懂
轩辕小不懂

2403 篇文章

作家榜 »

  1. 轩辕小不懂 2403 文章
  2. 小柒 1474 文章
  3. Pack 1135 文章
  4. Nen 576 文章
  5. 王昭君 209 文章
  6. 文双 71 文章
  7. 小威 64 文章
  8. Cara 36 文章