Heim  >  Fragen und Antworten  >  Hauptteil

关于java中重写.equals()方法的问题

ringa_leeringa_lee2763 Tage vor838

Antworte allen(2)Ich werde antworten

  • 阿神

    阿神2017-04-18 10:46:44

    是当前对象的 getClass()方法。
    在当前对象内使用当前对象的方法或者属性可以忽略 this,除非有参数名重复,才需要特别指定 this

    class Demo {
        private String id;
        private String name;
        
        public Demo(String id, String name){
           this.id = id; // 参数与字段名重复,所以需要指定 this
           this.name = name;
        }
        
        public Demo(String username) {
           name = username; // 这里的name 就是当前对象的name
           id = getClass().toString(); //  这里的 getClass() 也是当前对象的getClass() 方法
        }   
    }

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-04-18 10:46:44

    每次调用成员方法的时候都会隐式传入this对象,编译器会去给getClass() 加上this

    Antwort
    0
  • StornierenAntwort