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

HashSet is based on HashMap.

If we look at HashSet<E> implementation, everything is been managed under HashMap<E,Object>.

<E> is used as a key of HashMap.

And we know that HashMap is not thread safe. That is why we have ConcurrentHaspMap in Java.

Based on this, I am confused that why we don't have a ConcurrentHashSet which should be based on the ConcurrentHashMap?

Is there anything else that I am missing? I need to use Set in a multi-threaded environment.

Also If I want to create my own ConcurrentHashSet can I achieve it by just replacing the HashMap to ConcurrentHashMap and leaving the rest as is?

share|improve this question
1  
After looking at the API, if I were to guess I would say that it seems to come down to 2 factors, (1) avoiding having to create a class in Java API for every little bit of functionality needed (2) Providing convenience classes for more frequently used objects. I personally prefer LinkedHashMap and LinkedHashSet since they guarantee order is the same as insertion order, the only reason for using a set is to avoid duplication, often I still want to maintain insertion order. – Ali Aug 9 '11 at 7:31
@Ali, I personally prefer LinkedHashMap and LinkedHashSet you will go far :) – bestsss Aug 9 '11 at 20:54

3 Answers

up vote 38 down vote accepted

See http://download.oracle.com/javase/6/docs/api/java/util/Collections.html#newSetFromMap(java.util.Map)

share|improve this answer
2  
Am I right to say that if you create the set this way from ConcurrentHashMap, you lose the benefits you'd get from ConcurrentHashMap ? – Pacerier Nov 1 '11 at 20:47
4  
There are no benefits to lose. newSetFromMap's implementation is found starting on line 3841 in docjar.com/html/api/java/util/Collections.java.html. It's just a wrapper.... – Ray Toal Nov 1 '11 at 23:36
ic. thanks for the link – Pacerier Nov 3 '11 at 0:09
@zneak, isn't the add operation on a Set equivalent to what putIfAbsent does? The other operations in ConcurrentMap don't offer any functionality that doesn't exist in Set. Set already has a remove method and I don't see how a ConcurrentMap-like replace operation would make sense on a Set object. – Andrew McNamee Jul 19 '12 at 10:36
@Andrew, I think the motivation behind using a "ConcurrentSet" stems from not the API but rather the implementation - thread safety but without a universal lock - multiple concurrent reads for instance. – Ustaman Sangat Sep 13 '12 at 16:07
show 1 more comment

You can use guava's Sets.newSetFromMap(map) to get one. Java 6 also has that method in java.util.Collections

share|improve this answer
it's available in java.utll.Collections and set of CHM is usually a bad thing anyways. – bestsss Aug 9 '11 at 7:18
yeah, I noticed it is added in Java 6, so added it to the answer – Bozho Aug 9 '11 at 7:19
The main this is that if it is ThreadSafe, and I really doubt that. – Talha Ahmed Khan Aug 9 '11 at 7:22
@Talha, it's thread safe, however thread safety alone means nothing – bestsss Aug 9 '11 at 7:25

If multiple threads access a set concurrently, and at least one of the threads modifies the set, it must be synchronized externally. This is typically accomplished by synchronizing on some object that naturally encapsulates the set. If no such object exists, the set should be "wrapped" using the Collections.synchronizedSet method. This is best done at creation time, to prevent accidental unsynchronized access to the HashSet instance:

 Set s = Collections.synchronizedSet(new HashSet(...));

The iterators returned by this class's iterator method are fail-fast: if the set is modified at any time after the iterator is created, in any way except through the iterator's own remove method, the Iterator throws a ConcurrentModificationException. Thus, in the face of concurrent modification, the iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future.

Note that the fail-fast behavior of an iterator cannot be guaranteed as it is, generally speaking, impossible to make any hard guarantees in the presence of unsynchronized concurrent modification. Fail-fast iterators throw ConcurrentModificationException on a best-effort basis. Therefore, it would be wrong to write a program that depended on this exception for its correctness: the fail-fast behavior of iterators should be used only to detect bugs.

share|improve this answer
you need synchronized(s){for (Iteartor i=....)...} in order to iterate through the set – bestsss Aug 9 '11 at 7:50

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.