版权属于:
Java随笔记录
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
@Override
public boolean equals(Object o) {
//判断是不是同一个对象
if (this == o) {
return true;
}
//判断是否为空
if (o == null || getClass() != o.getClass()) {
return false;
}
//判断是否为Student类型并比较属性
Student student = (Student) o;
return age == student.age && Objects.equals(name, student.name);
}
评论