线程安全HashSet与Guava集合

线程安全HashSet与Guava集合

本文介绍了线程安全HashSet与Guava集合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



你可以帮我吗?



谢谢!

解决方案

使用Guava的Sets类是正确的答案。无论如何,来自@crhis的答案是好的。

  Sets.newSetFromMap(new ConcurrentHashMap< V,Boolean& 


Like the title says, i would like to get a thread-safe HashSet using Guava Collections.

Can you help me?

Thanks!

解决方案

This would be the right answer, Using the Sets class from Guava. Anyway the answer from @crhis was good intended.

Sets.newSetFromMap(new ConcurrentHashMap<V, Boolean>());

这篇关于线程安全HashSet与Guava集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 15:38