static int hashCode(O a) { ret a == null ? 0 : a.hashCode(); } static int hashCode(long l) { ret Long.hashCode(l); } static int hashCode(double d) { ret Double.hashCode(d); }