Comparison of HashMap and Hashtable source code in jdk 1.6, I saw below codes inside HashMap
/**
* The default initial capacity - MUST be a power of two.
*/
static final int DEFAULT_INITIAL_CAPACITY = 16;
int capacity = 1;
while (capacity < initialCapacity)
capacity <<= 1;
however, in Hashtable,i saw below codes?
table = new Entry[initialCapacity];
public Hashtable() {
this(11, 0.75f);
}
so my question is: why hashMap requires a power of 2 as initial capacity? and while hashtable choose 11 as the default initial capacity? i assume this has nothing to do with the thing that hashtable is thread safe and does not allow null key or values.
thx.