Does java.util.concurrent.atomic.AtomicBoolean not have a method that can atomically negate/invert the value? Can I do it another way? Am I missing something?
|
|
|||
|
My naive implementation would be this:
|
|||||||||||||
|
|
Little old... but didn't really feel the answers were great. Would have to totally disagree that this is not common or only useful in hardware. You may want a number of threads to toggle on a single variable with equal likelihood... I used the AtomicLong to make a fake boolean. This was adopted from a JMS MessageListener that I needed to respond a particular message half the time and another type the other half.
|
|||
|
|
|
In my opinion, AtomicBoolean is rarely useful. In essence, it's an AtomicInteger which wraps at 1. So you either get 0 or 1, does it really matter if the negate operation is atomic? For the boolean value to be meaningful, you must have some atomic action associated with the changing of the value, like flipping the disabled status of a button, counting how many times it's flipped etc. You can't associate any action with an atomic negate operation, you will need mutex or binary semaphore to protect the negation operation and action together. |
|||
|
|
ab=trueand there were 2 togglers that had a race condition. The one that got there first toggled the bit, and the second said "oh, I've already been toggled" and therefore left it alone. This would leaveab=false, whereas if the toggle operations happened separately, it would leaveab=true. That's a bug. As for whether it's really common to toggle a boolean: It's very common in the case of hardware, not sure about pure software situations. – Jason S Feb 2 '11 at 15:03