Meyers 的单例设计是线程安全的吗?
Meyers 的单例模式的实现(使用延迟初始化)提出了以下问题:线程安全。下面分析一下为什么这段代码在 C 11 中是线程安全的,以及它是如何实现线程安全的。
C 11 中的线程安全
根据 C 11 标准, §6.7 [stmt.dcl] p4:
If control enters the declaration concurrently while the variable is being initialized, the concurrent execution shall wait for completion of the initialization.
这意味着在 C 11 中,上述实现变得线程安全。标准要求线程执行等待初始化完成后再访问变量,保证线程安全。
编译器的支持
以下编译器提供动态初始化的支持和 Destruction with Concurrency,启用此功能:
C 03 的注意事项
在 C 03 中,代码不是线程安全的。 Meyers 在他的文章“C 和双重检查锁定的危险”中建议,在 C 03 中,围绕实例化方法的完全锁定是确保跨平台线程安全的最直接方法。
以上是Meyers 的单例实现在 C 11 中是线程安全的吗?的详细内容。更多信息请关注PHP中文网其他相关文章!