HashMap contains a hash table, which is an array that contains values
since I realized that the hash table has an initial size, but may increase after many put () calls (depending on load factor)
In any case, I wonder how you can find the value after changing the size of the hash table, because I know that to calculate code with a certain key, you can use the size of the table
e.g. key * prime% size
so how does it work?
user399950
source
share