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?
volatileis not interchangeable withsynchronized. Not even a little. – Matt Ball Jun 10 '11 at 16:36volatileworks as well assynchronized, but you can (almost) always usesynchronizedin place ofvolatile. – Ted Hopp Jun 10 '11 at 16:45volatileandjava.util.concurrent.atomic.*. – Matt Ball Jun 10 '11 at 16:53synchronizedin place ofvolatile, just that in some cases they are interchangeable in functionality. – Ted Hopp Jun 10 '11 at 16:59