DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Compact Hashcode Method
class Foo {
private String string;
private Date date;
private i;
[...]
public int hashCode() {
int result;
result = (string != null ? string.hashCode() : 0);
result = 29 * result + (date != null ? date.hashCode() : 0);
result = 31 * result + (i != null ? i : 0);
[...]
return result;
}
Consider using larger prime numbers if the number of properties is large.






Comments
Snippets Manager replied on Wed, 2007/02/14 - 2:44pm