I occasionally use a volatile
instance variable in cases where I have two threads reading from / writing to it and don\'t want the overhead (or potential deadlo
"volatile" serves multiple purposes:
while (l != 0) {}
.Is there more?