英文:
Volatile keyword on Atomic Variable
问题
以下是要翻译的内容:
以下代码在Java中有效
volatile AtomicInteger a = new AtomicInteger(123);
我们是否需要在诸如AtomicInteger
之类的原子变量上使用volatile
关键字?还是volatile
是多余的?
英文:
The following code is valid in Java
volatile AtomicInteger a = new AtomicInteger(123);
Do we require volatile
keyword on Atomic variables such as AtomicInteger
? Or is volatile
superfluous?
答案1
得分: 2
对于大多数合理的使用情况来说,这是多余的,但在某些奇怪的情况下可能会适用 - 尽管我想不出任何情况。 如果有疑虑,请使用 final
。
英文:
It's superfluous for most sane use cases, but conceivably applicable to some weird cases -- not that I can think of any. When in doubt, use final
.
答案2
得分: 0
volatile是多余的,因为AtomicInteger内部的变量已经是volatile的,并且会提供所需的happens-before关系。只需将字段声明为final。
英文:
volatile is superfluous because the variable inside the AtomicInteger already is volatile and will provide the happens-before relation that is required. Just make the field final.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论