I dont understand those few statements that I read:
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");
What does it mean, I cant read-update-write?
When will I want to use volatile instead of simple boolean. In C#, I remember that I could use a simple static bool to control when a thread starts and stops, but in java I need to use the identifier, "volatile":
> public class StoppableTask extends Thread {
private volatile boolean pleaseStop;
public void run() {
while (!pleaseStop) {
// do some stuff...
}
}
public void tellMeToStop() {
pleaseStop = true;
}
}

volatile. (You are not going to set it back to false again, right?) For "easier/safer/saner" tools to code concurrent code in Java, look at java.util.concurrent. It has thread management classes, and also an AtomicBoolean. – Thilo Aug 29 '11 at 7:52volatile! Without it, it is not guaranteed that the Thread will ever see the flag set totrue. Actually some compiler optimization could even remove the condition from the loop and make it an end-less loop. – Philipp Wendler Aug 29 '11 at 8:01volatilein the above example you can make an infinite loop:) – Petar Minchev Aug 29 '11 at 8:01