首页 > 编程语言 > 详细

java重载equals和hashCode

时间:2017-02-24 19:04:20      阅读:311      评论:0      收藏:0      [点我收藏+]
class Employee {

    private int salary;
    private java.util.Date hireDay;
    private String name;

    public int getSalary() {
        return salary;
    }

    public void setSalary(int salary) {
        this.salary = salary;
    }

    public Date getHireDay() {
        return hireDay;
    }

    public void setHireDay(Date hireDay) {
        this.hireDay = hireDay;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Employee(String name, int salary, Date hireDay) {
        this.name = name;
        this.hireDay = hireDay;
        this.salary = salary;
    }

    public Employee() {

    }

    static private HashMap<String, String> dict = new HashMap<String, String>();

    static {
        num = 0;
/*        dict.put("1","Employee");
        dict.put("2","Employee");*/
    }

    @Override
    public String toString() {

        if (hireDay == null)
            hireDay = Calendar.getInstance().getTime();
        SimpleDateFormat formatter;
        formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        return String.format("name:%s,salary:%d,hireDay:%s", name, salary, formatter.format(hireDay));
    }

    static int num;

    public static int getNum() {
        return num;
    }

    public static int setNum(int a) {
        num += a;
        return getNum();
    }

    @Override
    public int hashCode() {
        //0
        int result = 11;
        result = result * 17 + (name == null ? 0 : name.hashCode());
        result = result * 17 + (hireDay == null ? 0 : hireDay.hashCode());
        //result=result*17+salary;
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null || !(obj instanceof Employee))
            return false;
        if (this == obj)
            return true;
        Employee instance = (Employee) obj;

        return name.equals(instance.name) && hireDay.equals(instance.hireDay);
    }
}

 技术分享

java重载equals和hashCode

原文:http://www.cnblogs.com/zhshlimi/p/6439844.html

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