hashmap 不释放空间_Java HashMap.clear()和remove()内存有效吗?

  • Post author:
  • Post category:java


Consider the follwing HashMap.clear() code:

/**

* Removes all of the mappings from this map.

* The map will be empty after this call returns.

*/

public void clear() {

modCount++;

Entry[] tab = table;

for (int i = 0; i < tab.length; i++)

tab[i] = null;

size = 0;

}

It seems, that the internal array (table) of Entry objects is never shrinked. So, when I add 10000 elements to a map, and after that call map.clear(), it will keep 10000 nulls in it’s internal array. So, my question is, how does JVM handle this array of nothing, and thus, is HashMap memory effective?

解决方案

The idea is that clear() is only called when you want to re-use the HashMap. Reusing an object should only be done for the same reason it was used before, so chances are that you’ll have roughly the same number of entries. To avoid useless shrinking and resizing of the Map the capacity is held the same when clear() is called.

If all you want to do is discard the data in the Map, then you need not (and in fact should not) call clear() on it, but simply clear all references to the Map itself, in which case it will be garbage collected eventually.



版权声明:本文为weixin_39822728原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。