What is a WeakHashMap and when should one be using it? What are the differences between a WeakHashMap and a HashMap?
|
Elements in a weak hashmap can be reclaimed by the garbage collector if there are no other strong references to the object, this makes them useful for caches/lookup storage. Weak reference are not restricted to these hash tables, you can use WeakReference for single objects. They are useful to save resource, you can keep a reference to something but allow it to be collected when nothing else references it. (BTW, a string reference is a normal java reference). There are also weak references which tend not to be as readily collected as soft references (which don't tend to hang about for long after the last strong reference disappears) |
|||||||||
|
|
As others have already pointed out they provide a means for using an object as a key without creating a strong reference to it. This is useful in situations where you don't want to impair the JVM's ability to garbage collect the object but yet still want the ability to track some aspect of the object, this makes them ideal for caching or storing metadata about the object. I'd suggest reading this article about strong vs. weak references in Java. Without an understanding of the difference the data structure itself makes little sense. |
|||
|
|
|
From jGuru:
More on References: |
|||
|
|
|
For Better Understanding on weak references. |
|||
|
|
|
You can use a WeakHashmap to reduce the chance of a memory leak as a result of caching some object. The WeakHashMap will automatically remove entries whenever all references to the key are removed. |
|||
|
|
|
people use it to implement 'cache memory'. If you have some objects that are reused often in your application, and their construction is expensive, and there are too many of them to keep them all in memory - - you use WeakHashMap. Put there the object which is not currently used. When this object is needed - get it out of the map. For most of the time most of those objects will be staying in the map. The trick is that they are not held directly, but through WeakReferences. So if it gets really 'crowded', when we are running out of memory, gc will be allowed to collect them. So every time you try to get the object out of the WeakHashMap, you have to ensure it is still there. Otherwise you need to recreate it. |
|||
|
|
WeakHashMapbasically tells the differences between it and an ordinaryHashMap. Asking the same question multiple times does not make it a new question. – Péter Török Apr 4 '11 at 8:12