Home  Synchronization and concurrency  wait/notify  final  volatile  synchronized keyword  Java threading  Deadlock (and avoiding it)  Java 5: ConcurrentHashMap  Atomic variables  Explicit locks  Queues  Semaphores  CountDownLatch  CyclicBarrier

 Do you have a Kindle? Sign up to the newsletter  Follow the author on Twitter
 RECOMMEND THIS SITE TO FRIENDS/COLLEAGUES:

Find what you were looking for?
See also:

Related to volatile:
 Java 5 synchronization & concurrency
 Typical use of volatile
 volatile in Java 5
 When to use volatile?
 Common bugs with volatile
 Volatile arrays in Java

Other popular topics:
 Java thread programming
 Java synchronization and concurrency
 wait/notify in Java
 Java tomic variables

The volatile keyword in Java

Topics covered include:  Synchronized vs volatile  When to use volatile?  Atomic updates of volatile fields

It's probably fair to say that on the whole, the volatile keyword in Java is poorly documented, poorly understood, and rarely used. To make matters worse, its formal definition actually changed as of Java 5. Essentially, volatile is used to indicate that a variable's value will be modified by different threads.

Declaring a volatile Java variable means:

  • The value of this variable will never be cached thread-locally: all reads and writes will go straight to "main memory";
  • Access to the variable acts as though it is enclosed in a synchronized block, synchronized on itself.

We say "acts as though" in the second point, because to the programmer at least (and probably in most JVM implementations) there is no actual lock object involved. Here is how synchronized and volatile compare:

CharacteristicSynchronizedVolatile
Type of variableObjectObject or primitive
Null allowed?NoYes
Can block?YesNo
All cached variables synchronized on access?YesFrom Java 5 onwards
When synchronization happensWhen you explicitly enter/exit a synchronized blockWhenever a volatile variable is accessed.
Can be used to combined several operations into an atomic operation?YesPre-Java 5, no. Atomic get-set of volatiles possible in Java 5.
Difference between synchronized and volatile
Download PDF summary of this information

In other words, the main differences between synchronized and volatile are:

  • a primitive variable may be declared volatile (whereas you can't synchronize on a primitive with synchronized);
  • an access to a volatile variable never has the potential to block: we're only ever doing a simple read or write, so unlike a synchronized block we will never hold on to any lock;
  • because accessing a volatile variable never holds a lock, it is not suitable for cases where we want to read-update-write as an atomic operation (unless we're prepared to "miss an update");
  • a volatile variable that is an object reference may be null (because you're effectively synchronizing on the reference, not the actual object).

Attempting to synchronize on a null object will throw a NullPointerException.

Volatile variables in Java 5

We mentioned that in Java 5, the meaning of volatile has been tightened up. We'll come back to this issue in a moment. First, we'll look at a typical example of using volatile. Later, we'll look at topics such as:


Java programming articles and tutorials on this site are written by Neil Coffey (@BitterCoffey). Suggestions are always welcome if you wish to suggest topics for Java tutorials or programming articles, or if you simply have a programming question that you would like to see answered on this site. Most topics will be considered. But in particular, the site aims to provide tutorials and information on topics that aren't well covered elsewhere, or on Java performance information that is poorly described or understood. Suggestions may be made via the Javamex blog (see the site's front page for details).
Copyright © Javamex UK 2012. All rights reserved.