我如何正确同步?

发布于 2024-12-28 07:18:27 字数 427 浏览 1 评论 0原文

public void consumeResponse(OmwListResponse<T> response) {
    synchronized (response.getResultList()) { // XXX this isn't synchronized safely
        for (T t : response.getResultList()) {
            if (!cacheList.contains(t)) {
                cacheList.add(t);
            }
        }
    }
}

情况是我不希望任何人有机会 response.getResultList()cacheList 直到此方法完成。我该如何正确地做到这一点?

public void consumeResponse(OmwListResponse<T> response) {
    synchronized (response.getResultList()) { // XXX this isn't synchronized safely
        for (T t : response.getResultList()) {
            if (!cacheList.contains(t)) {
                cacheList.add(t);
            }
        }
    }
}

The the situation is I don't want anyone to chance response.getResultList() or cacheList until this method is done. How do I properly do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

臻嫒无言 2025-01-04 07:18:27

创建一个锁对象:

private static final void LOCK = new Object();

并对其进行同步。

Create a lock object:

private static final void LOCK = new Object();

and synchronize on that.

我做我的改变 2025-01-04 07:18:27

同步cacheList很容易。只需将使用它的任何代码包装在其中即可:

synchronized(cacheList) {
   // Make changes to cacheList here
}

如果 cacheList 是公共成员,并且您担心外部类会更改它,请将其设为私有成员并同步 getter 和 setter。这是唯一的方法,因为您无法控制其他类的行为,并且您有责任同步您的成员。

至于响应,这比较棘手,因为我不知道 OmwListResponse 是什么。你拥有那个班级吗?如果是这样,请使用与上述相同的方法。如果没有,你可能就不走运了。

Synchronizing cacheList is easy. Just wrap any code your code that uses it in:

synchronized(cacheList) {
   // Make changes to cacheList here
}

If cacheList is a public member and you're afraid external classes will change it, make it a private member and synchronize the getter and setter. This is the only way since you have no control over what other classes do and it is your responsibility to synchronize your members.

As for response, that is trickier because I don't what an OmwListResponse is. Do you own that class? If so, use the same method as above. If not, you may be out of luck.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文