馬老師大數(shù)據(jù)架構(gòu)師
void addEntry(int hash, K key, V value, int bucketIndex) {
? ? ? ?if ((size >= threshold) && (null != table[bucketIndex])) {
? ? ? ? ? ?resize(2 * table.length);
? ? ? ? ? ?hash = (null != key) ? hash(key) : 0;
? ? ? ? ? ?bucketIndex = indexFor(hash, table.length);
? ? ? ?}
? ? ? ?createEntry(hash, key, value, bucketIndex);
? ?}
標(biāo)簽: