问答详情
源自:6-1 学生选课---判断 List 中课程是否存在

重写equals方法的问题

这里的重写equals方法能不能用系统自动重写

提问者:不脱发的小Java 2017-09-05 10:35

个回答

  • qq_原点_29
    2017-09-06 22:19:26
    已采纳

    public boolean equals(Object obj) {

    if (this == obj)

    return true;

    if (obj == null)

    return false;

    if (getClass() != obj.getClass())

    return false;

    Student other = (Student) obj;

    if (name == null) {

    if (other.name != null)

    return false;

    } else if (!name.equals(other.name))

    return false;

    return true;

    }

    手写把模版给你自己改