重写equals方法

Posted 简简单单zjl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重写equals方法相关的知识,希望对你有一定的参考价值。

package com.day15.bean;

public class Person {
  private String name;
  private int age;
  public Person() {
    super();
  }  
  public Person(String name, int age) {
    super();
    this.name = name;
    this.age = age;
  }
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public int getAge() {
    return age;
  }
  public void setAge(int age) {
    this.age = age;
  }
  @Override
  public boolean equals(Object obj) {
    Person p=(Person)obj;
    return this.name.equals(p.name)&&this.age==p.age;
  }
}

以上是关于重写equals方法的主要内容,如果未能解决你的问题,请参考以下文章

【彻底理解】 为啥重写equals()方法为啥要重写hashCode()方法

java 集合中重写hashCode方法和重写equals方法啥关系?

为啥重写equals方法,一定要重写HashCode方法?

为什么重写 equals 方法 () 就要重写 hashCode ()

Java比较学习重写equals方法的安全写法

为什么重写equals()方法就必须重写hashCode()方法