gpt4 book ai didi

android - 哈希表 : How can use it with 2/3 different thread?

转载 作者:行者123 更新时间:2023-11-30 02:09:49 25 4
gpt4 key购买 nike

在 android 上我有一个哈希表和两个可以访问它的线程。- UI 线程使用 containsKey、get 和 put 访问它- 其他线程使用 containsKey、get 和 put 以及迭代器访问它

我知道哈希表是线程安全的,但确定吗?

有一件事我不明白:如果一个线程没有看到一个值已从哈希表中删除并且该线程对该对象进行迭代,为什么应用程序不会崩溃?

如果迭代器不是线程安全的,我们如何定义哈希表?

编辑:但现在我以更具体的方式告诉你我的问题,因为在其他方面我不清楚。以下是我的 concurrentHashMap 的代码:

public ConcurrentHashMap<String,Result> Holder = new ConcurrentHashMap<String,Result>();

class Result
{
public float goal = 0;
public float min = 0;
public float max = 0;
public float seconds = 0;
//lastaccess indicate the time of the last access of this Result
public float lastaccess = 0;
public boolean triggered = false;
}

现在,线程 B 每“x”秒迭代一次 Result 对象,并针对存储在 Holder ConcurretHashMap 中的每个键进行迭代。

其他线程为新 key 设置新的结果或为现有 key 编辑结果

  • 我想以原子方式执行更新结果的操作,但 hashmap 中的对象让我害怕。

  • UX 线程每 x 秒从 Holder 中移除所有项目。要以这种方式执行此操作:我创建了一个

    Object mlock = new Object();

线程B

 syncrhonized(mlock)
{
//all the thread B function.
// Iterate on all of the Holder item
}

在另一个线程 C 必须调用 Holder.clear() 时我是这样做的:

syncronized(mlock)
{
Holder.clear();
}
  • 这是防止线程 B 在具有不一致数据的 Holder 上迭代的正确方法吗?

最佳答案

线程安全但在高并发场景下推荐使用ConcurrentHashMap正如你在 official documentation 上看到的那样

关于android - 哈希表 : How can use it with 2/3 different thread?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30261342/

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