为了账号安全,请及时绑定邮箱和手机立即绑定

请教各位大神,为什么我代码中size跑到了最后去判断,而且是什么意思呀

package com.imcok;


public class shouji {

 double size;

String cpu;

String memory;

@Override

public boolean equals(Object obj) {

if (this == obj)

return true;

if (obj == null)

return false;

if (getClass() != obj.getClass())

return false;

shouji other = (shouji) obj;

if (cpu == null) {

if (other.cpu != null)

return false;

} else if (!cpu.equals(other.cpu))

return false;

if (memory == null) {

if (other.memory != null)

return false;

} else if (!memory.equals(other.memory))

return false;

if (Double.doubleToLongBits(size) != Double

.doubleToLongBits(other.size))

return false;

return true;

}

}


正在回答

2 回答

没有啊,正常比较的啊

0 回复 有任何疑惑可以回复我~

你在前面是不是去调用了这个size

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请教各位大神,为什么我代码中size跑到了最后去判断,而且是什么意思呀

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信