public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Dog other = (Dog) obj;
if (age != other.age)
return false;
return true;
}
重写的equals()方法不是很懂,求解释!!!!
隔壁老伍丶
慕设计2491986
大羹不和
相关分类