本文介绍了什么时候需要在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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!