码迷,mamicode.com
首页 > 其他好文 > 详细

重写equals方法

时间:2015-06-12 15:07:39      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:equals()方法重写

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方法

标签:equals()方法重写

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!