Skip to content

Instantly share code, notes, and snippets.

@m0wfo
Last active March 23, 2016 21:17
Show Gist options
  • Save m0wfo/478355e54161d93e0bfa to your computer and use it in GitHub Desktop.
Save m0wfo/478355e54161d93e0bfa to your computer and use it in GitHub Desktop.
Nonvolatile example
public class NonVolatileClass implements Runnable {
public 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