I usually do e.g.
HashMap<String,String> dictionary = new HashMap<String,String>();
I started to think about it, and as far as I know a HashMap is implemented under the hood via a hash table.
The objects are stored in the table using a hash to find where they should be stored in the table.
Does the fact that I do not set a size on the construction of the dictionary makes the performace decrease?
I.e. what would be the size of the hash table during construction? Would it need to allocate new memory for the table as elements increase?
Or I am confused on the concept here?
Are the default capacity and load adequate or should I be spending time for the actual numbers?
java.util.Hashtable(which is synchronized), but it is based on a hash table. – Mat Sep 25 '11 at 9:37HashMapis a very straightforward chaining hash table implementation with not a tree in sight. – larsmans Sep 25 '11 at 10:41HashMapisn't extremely fast or memory-efficient since it does do a lot of allocation. – larsmans Sep 25 '11 at 15:18