本文介绍了在java4和java5中使用volatile关键字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在java4和java5之后使用 volatile关键字有什么不同?

what is the difference in using volatile keyword in java4 and java5 onwards?

并且与此相关,

对于java4 它是否也适用于从java5开始有效???

Is this also true for java4 or it is valid from java5 onwards???

推荐答案

人们提供了积分和参考资料来回答我的问题,回答第一部分。

People have provided good points and references responding to my question answering first part.

具体到问题的第二部分,我在一些论坛上读到:

Going specific to the second part of question, this i read at some forum:

这是来自 Java语言规范,第二版

对volatile变量的加载,存储,读取和写入操作都是原子的,
,即使变量的类型是double或long。

The load, store, read, and write actions on volatile variables are atomic, even if the type of the variable is double or long.

这篇关于在java4和java5中使用volatile关键字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 10:08