本文介绍了我什么时候需要在 Java 中使用 AtomicBoolean?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何使用 AtomicBoolean 以及该类的用途是什么?
How I can use AtomicBoolean and what is that class for?
推荐答案
当多个线程需要检查和更改布尔值时.例如:
When multiple threads need to check and change the boolean. For example:
if (!initialized) {
initialize();
initialized = true;
}
这不是线程安全的.您可以使用 AtomicBoolean
修复它:
This is not thread-safe. You can fix it by using AtomicBoolean
:
if (atomicInitialized.compareAndSet(false, true)) {
initialize();
}
这篇关于我什么时候需要在 Java 中使用 AtomicBoolean?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!