Double checked locking Article(双重检查锁定文章)
问题描述
我正在阅读关于Double-已检查锁定"并且超出了本文的主要主题,我想知道为什么在文章的某些地方作者使用了下一个成语:
I was reading this article about "Double-Checked locking" and out of the main topic of the article I was wondering why at some point of the article the author uses the next Idiom:
清单 7. 尝试解决乱序写入问题
Listing 7. Attempting to solve the out-of-order write problem
public static Singleton getInstance()
{
if (instance == null)
{
synchronized(Singleton.class) { //1
Singleton inst = instance; //2
if (inst == null)
{
synchronized(Singleton.class) { //3
inst = new Singleton(); //4
}
instance = inst; //5
}
}
}
return instance;
}
我的问题是:有什么理由用同一个锁同步两次代码吗?这有什么目的吗?
And my question is: Is there any reason to synchronize twice some code with the same lock? Have this any purpose it?
非常感谢.
推荐答案
两次锁定的目的是尝试防止乱序写入.内存模型指定了可能发生重新排序的位置,部分是根据锁.锁确保在instance = inst;"之后不会出现任何写入(包括单例构造函数中的任何写入).行.
The point of locking twice was to attempt to prevent out-of-order writes. The memory model specifies where reorderings can occur, partly in terms of locks. The lock ensures that no writes (including any within the singleton constructor) appear to happen after the "instance = inst;" line.
但是,要深入了解该主题,我建议 Bill Pugh 的文章.然后永远不要尝试它:)
However, to go deeper into the subject I'd recommend Bill Pugh's article. And then never attempt it :)
这篇关于双重检查锁定文章的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:双重检查锁定文章


- 获取数字的最后一位 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 转换 ldap 日期 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01