public int hashCode() {
// TODO Auto-generated method stub
return this.name.hashCode()+this.age*10;
}
@Override
public boolean equals(Object obj) {
if (this==obj){
return true;
}
if(!(obj instanceof Student)){
return false;
}
String s=(Student)obj;
return this.name.equals(s.name)&&this.age==age;
}
|
|