a1670131049 2019-04-29 20:57 采纳率: 50%
浏览 369
已采纳

java HashSet存储自定义对象问题

public class Test {
    public static void main(String[] args) {
        HashSet l=new HashSet();
        Students s1=new Students("zhang1",12);
        Students s2=new Students("zhang1",11);
        System.out.println(s1==s2);

        l.add(s1);
        l.add(s2);
        Iterator it=l.iterator();
        System.out.println();
        while(it.hasNext()){
            Students p=(Students)it.next();
            System.out.println(p.getName()+"..."+p.getAge());
        }
        System.out.println(s1);
        System.out.println(s2);
    }

}

public class Students {
    private String name;
    private int 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;
    }
    public Students(String name, int age) {
        super();
        this.name = name;
        this.age = age;
    }
    public int hashCode() {
        System.out.println("hashcode running...");
        return name.hashCode();
    }
    public boolean equals(Object obj) {
        Students s=(Students)obj;
        System.out.println(this);
        return this.name==s.name && this.age==s.age;
    }
}
输出结果:
false
hashcode running...
hashcode running...
hashcode running...
Test.Students@d61689c5

zhang1...11
zhang1...12
hashcode running...
Test.Students@d61689c5
hashcode running...
Test.Students@d61689c5

问题1:Test类中最后两句话打印s1和s2的地址,结果都是
Test.Students@d61689c5,为什么地址会一样?可是通过s1==s2发现地址是不一样的。
问题2:输出对象的时候,为什么会调用hashcode方法?

  • 写回答

3条回答 默认 最新

  • threenewbee 2019-04-29 21:49
    关注

    Test类中最后两句话打印s1和s2的地址
    这个打印的不是地址,而是hash值。hash相同未必就是同一个对象。
    因为默认的toString()就是输出hashcode,所以第二个问题没有回答的必要了。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

问题事件

  • 已采纳回答 1月24日

悬赏问题

  • ¥500 高有偿提问!求优化设计微信小程序
  • ¥15 matlab在安装时报错 无法找到入口 无法定位程序输入点
  • ¥15 收益高的广告联盟有哪些
  • ¥15 Android Studio webview 的使用问题, 播放器横屏全屏
  • ¥15 删掉jdk后重新下载,Java web所需要的eclipse无法使用
  • ¥15 uniapp正式环境中通过webapi将本地数据推送到设备出现的跨域问题
  • ¥15 xui建立节点,显示错误
  • ¥15 关于#单片机#的问题:开始、复位、十进制的功能可以实现,但是切换八进制的功能无法实现(按下按键也没有效果),把初始状态调成八进制,也是八进制可以实现但是切换到十进制不行(相关搜索:汇编语言|计数器)
  • ¥15 VINS-Mono或Fusion中feature_manager中estimated_depth是特征的深度还是逆深度?
  • ¥15 谷歌浏览器如何备份抖音网页数据