黑马程序员技术交流社区

标题: 关于重写equals [打印本页]

作者: 黄盖打周瑜    时间: 2016-3-20 12:07
标题: 关于重写equals
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 String toString() {
                return "Person [name=" + name + ", age=" + age + "]";
        }
        @Override
        public boolean equals(Object obj) {
                Person  p = (Person)obj;
                return this.name.equals(p.name)&& this.age == p.age;
        }
       
       
}





上面代码重写equals方法,方法中,this代表当前对象的引用,也就是当前对象Person中的name,与p.name里面的字符串作比较.我不明白的地方就是对象的引用P中的name不是加了也private吗,怎么可以直接用p.调用.



作者: If_091021    时间: 2016-3-21 20:05
因为p也是Person类的对象,加了private修饰符的实例域可以被本类对象调用。
作者: ShallDoll    时间: 2016-3-21 21:12
因为在一个类中
作者: 黄盖打周瑜    时间: 2016-3-21 22:15
感谢各位大神,明白了




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2