Skip to content

Instantly share code, notes, and snippets.

@m0wfo
Created March 23, 2016 21:16
Show Gist options
  • Save m0wfo/3f662bebc4db5afe8a38 to your computer and use it in GitHub Desktop.
Save m0wfo/3f662bebc4db5afe8a38 to your computer and use it in GitHub Desktop.
VolatileExample
public class VolatileClass implements Runnable {
public volatile long a;
@Override
public void run() {
long b;
for (int i = 0; i < 1E9; i++) {
b = a;
}
System.out.println(a);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment