Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicates:
Difference between volatile and synchronized in JAVA (j2me)
Difference between synchronization of field reads and volatile

According to java documentations, I found volatile works like synchronized about objects. I was wondering if volatile is faster than synchronized or not? or it would cause any side effect to use volatile instead of synchronized keyword?

share|improve this question
2  
volatile is not interchangeable with synchronized. Not even a little. – Matt Ball Jun 10 '11 at 16:36
There's an interesting comparison here between the two. – Ted Hopp Jun 10 '11 at 16:43
@Matt - I don't know what that means. Granted, there are very few cases where volatile works as well as synchronized, but you can (almost) always use synchronized in place of volatile. – Ted Hopp Jun 10 '11 at 16:45
@Ted the usual choice is between volatile and java.util.concurrent.atomic.*. – Matt Ball Jun 10 '11 at 16:53
@Matt - I wasn't arguing the merits of using synchronized in place of volatile, just that in some cases they are interchangeable in functionality. – Ted Hopp Jun 10 '11 at 16:59

marked as duplicate by Daniel DiPaolo, Matt Ball, Ted Hopp, bomslang, Emil Sit Jun 10 '11 at 16:43

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.