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

Java object equal的问题?

Java object equal的问题?

泛舟湖上清波郎朗 2019-02-07 15:07:41
class Employee{public boolean equals(Object otherObject){if (this ==otherObject) return true;if(otherObject ==null) return false;if(getClass()!=otherObject.getClass())return false;Employee other =(Employee)otherObject;return name.equals(other.name)&&salary==other.salary&&hireday.equals(other.hireday);}}他第三部已经比较两者类是否相同,为什么后面又强制类型转换。??,直接拿otherObject不行吗??求大神指教
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 435 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信