java学习笔记:为什么要重写同equal和tostring方法

为什么要重写equal:

equals是object类的方法,所有没有重写这个方法的类中使用这个方法比较的都是地址,和'=='是一样的,重写过这个方法的类就按照重写的方法来比较,比如String类就重写了这个方法,所以比较的就是内容

eclipse快捷键可以直接生成,右键->source -> Generate hashCode() and equals();自动重写hashcode和equal

idea 右键-> source->equals() and hashCode() 

必须在要重写的类中右键生成才行,随意右键的话可能看不到,生成地方也不一定自己想的位置

    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(age!=other.age)
            return false;
        if(name == null){
            if(other.name!=null)
                return false;
        }else if(!name.equals(other.name))
            return false;
        return true;
    }

为什么要重写toString:

如果直接打印对象的话,对象会自动调用toString方法,会返回一个 类名+此对象无符号16位进制的hashcode码地址,重写toString目的就是格式化成方便自己理解的形式

同样可以由快捷键生成,同上都在source中,如果不想要这种打印结果,还可以自己手动修改或者干脆自己写

public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", age='" + age + '\'' +
                '}';

 

你可能感兴趣的:(java,object,java,hashcode)