The HIRO Says

If you smell what The HIRO is cooking!!!

2009-08-06から1日間の記事一覧

hashCode() メソッドの実装(2)−Eclipseに自動生成させてみた

equals() メソッドと同様に、Eclipse(v3.2.0)に hashCode() メソッドを自動生成させてみました。 生成されたコード @Override public int hashCode() { final int PRIME = 31; int result = super.hashCode(); result = PRIME * result + (booleanValue ? 12…