问答详情
源自:9-9 Java 中的 Object 类 Ⅱ

请问equals()方法体默认是怎么写的?

请问equals()方法体的默认写法是什么?谢谢。


提问者:_Jack_Han_ 2016-01-17 17:04

个回答

  • yx杨旭
    2016-01-17 18:34:43
    已采纳

    package cn.yangxu;

    class P{

    private int age;

    private String name;

    public P(int age, String name) {

    super();

    this.age = age;

    this.name = name;

    }

    public int getAge() {

    return age;

    }

    }

    public class EqualsClass extends Object{

    static int AGE=10;

    public boolean equals(P person){

    return EqualsClass.AGE==person.getAge();

    }

    public static void main(String[] args) {

    P person = new P(10,"lisi");

    boolean bool = new EqualsClass().equals(person);

    System.out.println(bool);

    }

    }

    你看看,是这样的 equals方法主要返回的是bool值

  • yx杨旭
    2016-01-17 18:23:02

    不是的,其实主要就是一个判断。

    /**

         * Returns true if the specified object is equal to this

         * enum constant.

         *

         * @param other the object to be compared for equality with this object.

         * @return  true if the specified object is equal to this

         *          enum constant.

         */

        public final boolean equals(Object other) {

            return this==other;

        }


  • qq_梦幻江湖_0
    2016-01-17 17:44:50

    你直接打开source,然后再打开他就自动生成默认equal,你就可以自己参考了