作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚开始阅读 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.
最佳答案
有两种可能的基本情况:
非线程安全对象仅限于单个线程。
对共享的非线程安全对象的访问由使用它们的线程进行外部协调。极其简单的例子:通过同步所有访问
synchronized( sharedObject ) {
sharedObject.access();
}
关于java - 线程安全的程序如何包含非线程安全的类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18424120/
我是一名优秀的程序员,十分优秀!