码迷,mamicode.com
首页 > 编程语言 > 详细

java重载equals和hashCode

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

标签:turn   boolean   pre   logs   imp   bool   images   override   result   

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

标签:turn   boolean   pre   logs   imp   bool   images   override   result   

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

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