比较Items对象时 会先比较两对象的hash码是否相同 再比较其值
而Items对象实例化后尽管id相同 但是系统自动比较会得到 :1.hashcode不同 2.值不等
因此此处判断必须先重写Items 的equals与hashcode方法 才能得到正确的返回
并且重写方法时,只比较id也会得到正确答案
而Items对象实例化后尽管id相同 但是系统自动比较会得到 :1.hashcode不同 2.值不等
因此此处判断必须先重写Items 的equals与hashcode方法 才能得到正确的返回
并且重写方法时,只比较id也会得到正确答案
2017-03-21
最新回答 / 少说多敲
setter提示用户名用的;也就是跳转之后如果再取值的话可以从这取到(getter);视频里最后登录成功没有提示用户名所以不写也行;但是视频开头要求是跳转登录成功页面并提示用户名
2017-03-21
最新回答 / 慕运维3916613
public Items(int id,String name,String city,int price,int number,String picture) { this.id = id; this.name = name; this.city = city; this.picture = picture; this.price = price; this.number = number; }
2017-03-18