Search Results

0
votes

HashMap intialization parameters (load / initialcapacity)

Referring to HashMap source code will help. If the number of entries reaches threshold(capacity * load factor), rehashing is done automatically. That means too small load factor can incur f …
1
vote

Anyone know of a java.util.Map implementation optimized for low memory use?

Simply, I recommend to use one of HashMap, Hashtable and ConcurrentHashMap of JDK depending on synchronization or concurrency requirements. If you decide to use them, setting initialCapacity and lo …