Phone class
-model: String
-serialCode: int
-distributor:String
-price: double
+Constructor(String,int,String,double)
+get/set methods
public int hashCode() {
int hash = 7;
hash = 29 * hash + this.serialCode;
return hash;
}
这是netbean 生成的 重写hashcode。
请问写成
Public int hashCode(){
Return serialCode;
}
有什么区别? |
|