I have a hashmap of the type HashMap<Long, ArrayList<String>>.
I need to override the equals() and hashCode() methods to gain in performance. What should be the overriding function like, for this case ?
I knew the exact no. of elements I would be putting in the HashMap, thus I have used initial Capacity = (No. Of Elements that will be put)/ 0.75
where 0.75=> load factor, Is this correct?
equalsandhashCodemethods of allMapandCollectionimplementations. As the others have said, you aren't really going to get any better than the existing implementations within the contract. – ColinD Mar 10 '11 at 23:29