本文介绍了AtomicBoolean没有negate()方法吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

java.util.concurrent.atomic.AtomicBoolean 没有可以原子地否定/反转值的方法?我可以用另一种方式吗?

Does java.util.concurrent.atomic.AtomicBoolean not have a method that can atomically negate/invert the value? Can I do it another way? Am I missing something?

推荐答案

我的天真的实现将是这样:

My naive implementation would be this:

boolean v;
do {
  v=atomicBoolean.get();
} while(!atomicBoolean.compareAndSet(v, !v));

这篇关于AtomicBoolean没有negate()方法吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 19:16