gpt4 book ai didi

java - Hashtable.entrySet() 线程安全吗?

转载 作者:行者123 更新时间:2023-11-29 07:37:16 33 4
gpt4 key购买 nike

遍历 Hashtable.entrySet() 返回的集合是否安全? Hashtable.values()Hashtable.keySet() 怎么样?

我打算做什么:我想在表被不同的其他线程使用时更新 Hastable 的条目。为此,我必须遍历 map 中当前的所有条目。是否处理在迭代期间从其他线程添加/删除的任何条目并不重要。在哈希表上同步不是一种选择,因为更新可能需要很长时间。

最佳答案

来自JavaDoc :

Unlike the new collection implementations, Hashtable is synchronized. If a thread-safe implementation is not needed, it is recommended to use HashMap in place of Hashtable. If a thread-safe highly-concurrent implementation is desired, then it is recommended to use ConcurrentHashMap in place of Hashtable.

最好使用 ConcurrentHashMap .

关于java - Hashtable.entrySet() 线程安全吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34091922/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com