Hey all, I'm working on some code I inherited, it looks like one thread is setting a boolean member variable while another thread is in a while loop checking it. Will this actually work OK or should I change it to use synchronized getters or setters on the boolean var?
|
|
In the case of reading and writing a primitive like bool or int declaring them as volatile will be plenty. When one threads read the other thread would have finished writing. The variable will never be in an invalid state.
|
|||||||||||||
|
|
Almost certainly you will need to add locking at a higher level. Just adding As an example consider deleting the contents of a thread-safe document. The document provides two relevant thread-safe operations: deleting contents between two indexes and a length operation. So you get the length and delete from zero to the length, right? Well, there's a race as the document may change length between reading the length and deleting the contents. There is no way to make the operation thread-safe given the operations. (Example taken from Swing Text.) |
|||||||
|
|
If you use java 1.5+, You should use Condition synchronization primitive. If you follow the link it has a nice example on how to use it. |
|||
|
|
|
It's not guaranteed to work if it's a plain boolean, one of the threads might not see the updated boolean due to the memory model of java , you can
Keep in mind that none of these might "work" if the thread reading this boolean depends on the previous value of the boolean - it might miss changes to that boolean, e.g. Thread1:
Thread2:
If this is an issue and you need to monitor changes to the boolean, consider using wait()/notify() or Condition |
||||
|
|
|
I would suggest that the boolean be declared volatile and that read AND write accesses be synchronized |
|||||||
|