01 2022 档案
摘要:实现效果 编写代码 1、实体类对象实现Comparable接口重写compareTo方法 public class User implements Comparable<User>{ private String name; private Integer age; public User() {
阅读全文
摘要:1.重写对象的equals方法 @Override public boolean equals(Object o) { if (this == o) return true; //先判断o是否为本对象,this 指向当前的对象 if (o == null || getClass() != o.get
阅读全文