2023-07-31 13:11:35 +00:00
|
|
|
import java.lang.Integer;
|
|
|
|
|
|
|
|
record Rec(Integer a, Integer b) {}
|
|
|
|
|
|
|
|
/*public class Rec {
|
|
|
|
x; y;
|
|
|
|
Rec(Integer a, Integer b) {
|
|
|
|
x = a;
|
|
|
|
y = b;
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
|
|
|
public class RecordTest {
|
|
|
|
a = new Rec(10, 20);
|
|
|
|
b = new Rec(10, 20);
|
|
|
|
c = new Rec(20, 40);
|
|
|
|
|
2024-03-14 12:50:56 +00:00
|
|
|
public doesEqual() { return a.equals(b); }
|
|
|
|
public doesNotEqual() { return b.equals(c); }
|
|
|
|
public hashCode() { return a.hashCode(); }
|
|
|
|
public toString() { return a.toString(); }
|
2023-07-31 13:11:35 +00:00
|
|
|
}
|