record 的使用场景#
假设我们想创建一个不可变的类 Point,它有 x 和 y 的坐标。我们想实例化Point对象,读取它们的字段,并将它们存储在 List 中或在 Map 中作为键值使用。
我们可以这样实现 Point 类
public class Point {
private final int x;
private final int y;
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Point point = (Point) o;
if (x != point.x) return false;
return y == point.y;
}
@Override
public int hashCode() {
int result = x;
result = 31 * result + y;
return result;
}
@Override
public String toString() {
return "Point{" + "x=" + x + ", y=" + y + '}';
}
public Point(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
}
如上代码中重复写了很多模板代码,使用 Lombok,代码可以简化成如下方式
@AllArgsConstructor
@Getter
@EqualsAndHashCode
@ToString
public class Point {
private final int x;
private final int y;
}
现在有了 record 上述所有代码可以简化为
public record Point(int x, int y) {}
使用javac Point.java && javap Point
,我们可以查看到 Point 反编译后的结果
public final class Point extends java.lang.Record {
public Point(int, int);
public final java.lang.String toString();
public final int hashCode();
public final boolean equals(java.lang.Object);
public int x();
public int y();
}
和我们最初始的 Point 类定义是一样的,所以 record 可以大量简化代码的编写。
我们可以像正常使用类一样使用 record
示例代码
public class App {
public static void main(String[] args) {
Point p = new Point(3, 4);
int x = p.x();
int y = p.y();
System.out.println(x + " " + y);
Point p2 = new Point(3, 4);
Point p3 = new Point(7, 5);
System.out.println(p2.equals(p)); // 输出 true
System.out.println(p2.equals(p3)); // 输出 false
}
}
record 可以通过如下方式来实现多构造函数
public record Point(int x, int y) {
public Point() {
this(3, 3);
}
public Point(int v) {
this(v, v + 3);
}
}
record 中可以包括 static 类型变量,示例如下
public record Point(int x, int y) {
private static final int ZERO = 0;
private static long count = 0;
public Point() {
this(ZERO, ZERO);
synchronized (Point.class) {
count++;
}
}
public static synchronized long getCount() {
return count;
}
public Point(int v) {
this(v, v + 3);
}
}
如果要覆盖 record 的默认构造函数,则函数入参一定要和 record 的入参保持一致,否则会报错
正确
public record Point(int x, int y) {
public Point(int x, int y) {
this.x = x;
this.y = y;
}
}
错误
public record Point(int x, int y) {
public Point(int m, int n) {
this.x = m;
this.y = n;
}
}
record 中可以自定义非 static 方法,例如
public record Point(int x, int y) {
public double distanceTo(Point target) {
int dx = target.x() - this.x();
int dy = target.y() - this.y();
return Math.sqrt(dx *dx + dy* dy);
}
}
调用方法
public class App {
public static void main(String[] args) {
Point from = new Point(17, 3);
Point to = new Point(18, 12);
double distance = from.distanceTo(to);
System.out.println(distance);
}
}
record 也可以实现接口,但是无法继承类
本站声明:
1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/294472.html