Consider the following example:
public class Example {
public int a, b, c, d;
public void doIt() {
a = b + 1;
c = d + 1;
}
}
If this class is used is a single-threaded application, then the observable behavior will be exactly as you would expect. For instan...