为了账号安全,请及时绑定邮箱和手机立即绑定

重写equals方法的问题

这里的重写equals方法能不能用系统自动重写

正在回答

1 回答

public boolean equals(Object obj) {

if (this == obj)

return true;

if (obj == null)

return false;

if (getClass() != obj.getClass())

return false;

Student other = (Student) obj;

if (name == null) {

if (other.name != null)

return false;

} else if (!name.equals(other.name))

return false;

return true;

}

手写把模版给你自己改


0 回复 有任何疑惑可以回复我~
#1

不脱发的小Java 提问者

非常感谢!
2017-10-09 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Java入门第三季
  • 参与学习       409789    人
  • 解答问题       4340    个

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

进入课程

重写equals方法的问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信