首页 > 其他 > 详细

重写equals方法

时间:2015-06-12 15:06:18      阅读:94      评论:0      收藏:0      [点我收藏+]
public class Student{
    int age;
    int id;
    int name;
    public boolean equals(Object obj)
        if(this==obj){
        return true;
        }
        if(obj instanceof Student){
            Student stu=(Student)obj;
            if(stu.id==id&&stu.age==age&&stu.name==name){
                return true;
            }
        }
        return false;        
}


本文出自 “gaogaozi” 博客,请务必保留此出处http://hangtiangazi.blog.51cto.com/8584103/1661207

重写equals方法

原文:http://hangtiangazi.blog.51cto.com/8584103/1661207

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