首页 > 其他 > 详细

重写equals方法

时间:2019-04-01 20:43:05      阅读:97      评论:0      收藏:0      [点我收藏+]
public class Father {
    String name;

    public Father(String name) {
        this.name = name;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof Father)) {
            return false;
        }
        Father f = (Father) obj;
        return (this.name.equals(f.name));

    }

    @Override
    public String toString() {
        return "Father [name=" + name + "]";
    }

}
public class Son {

    public static void main(String[] args) {
        Father f1 = new Father("张飞");
        Father f2 = new Father("张飞");
        System.out.println(f1);
        System.out.println(f2);
        System.out.println(f1.equals(f2));

    }

}
Father [name=张飞]
Father [name=张飞]
true

 

重写equals方法

原文:https://www.cnblogs.com/19322li/p/10638542.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!