How do I modify an int atomically and thread-safely in Java?
Atomically increment, test & set, etc...?
|
|
How do I modify an int atomically and thread-safely in Java? Atomically increment, test & set, etc...?
|
||
|
|
|
|
Use AtomicInteger. |
||||||||||
|
|
|
Thread safety can be achieved via synchronized functions. Wrap your int (or such data) in a class which provides the required functionalities via synchronized methods, e.g.
You can also use classes from the java.util.concurrent.atomic package, e.g. AtomicInteger or AtomicIntegerArray |
||
|
|