A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

@Override
public boolean equals(Object obj) {
  if (this == obj)
   return true;
  if (obj == null)
   return false;
  if (getClass() != obj.getClass())
   return false;
  Person other = (Person) obj;
  if (age != other.age)
   return false;
  if (name == null) {
   if (other.name != null)
    return false;
  } else if (!name.equals(other.name))
   return false;
  return true;
}*/

2 个回复

倒序浏览
这是对equals的重写;
public boolean equals(Object obj) {
                if (this == obj)                                                //调用的对象和传入的对象是同一个对象
                        return true;                                                //直接返回true
                if (obj == null)                                                //传入的对象为null
                        return false;                                                //返回false
                if (getClass() != obj.getClass())                //判断两个对象对应的字节码文件是否是同一个字节码
                        return false;                                                //如果不是直接返回false
                Person other = (Person) obj;                        //向下转型
                if (age != other.age)                                        //调用对象的年龄不等于传入对象的年龄
                        return false;                                                //返回false
                if (name == null) {                                                //调用对象的姓名为null
                        if (other.name != null)                                //传入对象的姓名不为null
                                return false;                                        //返回false
                } else if (!name.equals(other.name))        //调用对象的姓名不等于传入对象的姓名
                        return false;                                                //返回false
                return true;                                                        //返回true


回复 使用道具 举报
crazymen 发表于 2016-6-21 23:31
这是对equals的重写;
public boolean equals(Object obj) {
                if (this == obj)                                                //调用的对象和传入的 ...

太感谢了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马