コード例 #1
0
ファイル: Assignment.java プロジェクト: shaunmahony/seqcode
 public int hashCode() {
   int code = 17;
   code += object.hashCode();
   code *= 37;
   code += category.hashCode();
   code *= 37;
   return code;
 }