单选题

以下代码的执行结果是? class RectObject { public int x; public int y; public RectObject(int x, int y) { this.x = x; this.y = y; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; final RectObject other = (RectObject) obj; if (x != other.x) { return false; } if (y != other.y) { return false; } return true; } } public class Example { public static void main(String[] args) { HashSet<RectObject> set = new HashSet<RectObject>(); RectObject r1 = new RectObject(3, 3); RectObject r2 = new RectObject(5, 5); RectObject r3 = new RectObject(3, 3); set.add(r1); set.add(r2); set.add(r3); set.add(r1); System.out.println("size:" + set.size()); } }

发布于 2020-12-25 22:05:53

登录后免费查看答案
关注者
0
被浏览
121
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看