“Atomic Variable 上的 Volatile 关键字”

huangapple go评论70阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2020年8月9日 01:50:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/63318556.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定