问答详情
源自:9-9 Java 中的 Object 类 Ⅱ

请教各位大神,为什么我代码中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;

}

}


提问者:慕粉0643035488 2016-12-15 23:49

个回答

  • 慕粉0643035488
    2016-12-16 00:19:03

    没有啊,正常比较的啊

  • 聪聪聪聪
    2016-12-16 00:02:44

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