gpt4 book ai didi

java - 线程安全的程序如何包含非线程安全的类?

转载 作者:行者123 更新时间:2023-12-03 23:01:26 26 4
gpt4 key购买 nike

我刚开始阅读 Java Concurrency in Practice , 从第 17 页开始:

We’ve used the terms “thread-safe class” and “thread-safe program” nearly interchangeably thus far. Is a thread-safe program one that is constructed entirely of thread-safe classes? Not necessarily—a program that consists entirely of thread-safe classes may not be thread-safe, and a thread-safe program may contain classes that are not thread-safe.

  • 线程安全的程序如何包含非线程安全的类?非常感谢额外的代码示例。

最佳答案

有两种可能的基本情况:

  1. 非线程安全对象仅限于单个线程。

  2. 对共享的非线程安全对象的访问由使用它们的线程进行外部协调。极其简单的例子:通过同步所有访问

        synchronized( sharedObject ) {
    sharedObject.access();
    }

关于java - 线程安全的程序如何包含非线程安全的类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18424120/

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