Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

From J. Bloch

A ... source of memory leaks is listeners ... The best way to ensure that callbacks are garbage collected promptly is to store only weak references to them, for instance, by storing them only as keys in a WeakHashMap.

So, why there isn't any WeakSet in java collection framework?

Thanks.

share|improve this question

3 Answers

up vote -9 down vote accepted

It's simple: there are use cases for WeakHashMap (in particular, the case where you want to annotate objects with additional properties), but there are no use cases for WeakSets.

share|improve this answer
1  
@Martin v. Löwis : Observer's implementation is a use case for WeakSets, isn't it? – Stas Kurilin Oct 31 '10 at 11:55
That's debatable, and an API design decision. java.util.Observable has opted to hold strong reference to the observers. It is then the observer's choice to pass a (wrapper to) a weak reference, allowing the observable to hold the only reference to the observer - which would not possible if they were weakly referenced by default. – Martin v. Löwis Oct 31 '10 at 12:07
@Martin v. Löwis : Hm.. I see. It's debatable. But there are some implementations where observer pattern uses WeakSets. And J Bloch know about it. if so, why there is no any special class for this? But I see.. Probably this usages is not often or smt like this. – Stas Kurilin Oct 31 '10 at 12:20
Rationale aside, it's a matter of fact that it does, see google.com/codesearch/p?hl=de#-WpwJU0UKqQ/src/share/classes/…. In Java, you often create temporary objects as observers (using anonymous classes often) that wrap the notification API to the target object. These observers will only be referenced by the observable, but they will adapt the callback to perform the real action on some long-lived object. – Martin v. Löwis Oct 31 '10 at 12:31
@Stas: It's also really trivial to create a weak set in a single line, so what advantage would you gain if there was a separate class for it? In Python, we have the saying "not every two-line function needs to be in the standard library". The same reasoning might apply here. – Martin v. Löwis Oct 31 '10 at 12:35
show 2 more comments
Set<Object> weakHashSet = Collections.newSetFromMap(
        new WeakHashMap<Object, Boolean>());

from javadoc in java.util.Collections#newSetFromMap(Map)

share|improve this answer
actually any Set in java collection contains Map for storing. – mart Oct 31 '10 at 11:49
2  
Yep, but why there is no specific class for such stuff? – Stas Kurilin Oct 31 '10 at 11:52
4  
It's easy to imagine why the maintainers of java.util might have wanted to stop having to provide dual Map and Set versions of everything they do, and opted to just provide newSetFromMap() instead... isn't it? – Kevin Bourrillion Oct 31 '10 at 15:48
@Kevin Bourrillion : It is. But there is some strange about their selections. – Stas Kurilin Oct 31 '10 at 20:40
7  
It's worth noting that Collections#newSetFromMap is missing from Android before API 9. It's not difficult to find an implementation to compile into your app, though, but it's a compatibility gotcha. – nmr Feb 17 '12 at 23:11
show 2 more comments

So, why there isn't any WeakSet in java collection framework?

While there may be limited use-cases for WeakHashSet, part of the Java class library design philosophy was to avoid populating the class libraries with utility classes for all possible use-cases.

There are a number of other class libraries which include collection types; Apache Commons Collections and Google Collections (aka Guava) are good examples. However, WeakHashSet hasn't even "made the cut" for the Apache and Google libraries.

share|improve this answer
Thanks. Probably i need do more observing work about other libraries to understand java collection framework. – Stas Kurilin Oct 31 '10 at 13:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.