vote up 3 vote down star

How do I modify an int atomically and thread-safely in Java?

Atomically increment, test & set, etc...?

flag

63% accept rate

2 Answers

vote up 9 vote down check

Use AtomicInteger.

link|flag
Which is fine if all you need is the limited set of operations it provides. The "etc" in the question suggests more flexibility. – skaffman Jul 20 at 8:34
2  
Does it ? If he's looking for more, he should be more explicit. AtomicInteger seems to be the right answer in the meantime – Brian Agnew Jul 20 at 8:35
1  
Also have a look at the other classes in the java.util.concurrent package. They can be helpful for the "etc"-stuff – Roland Schneider Jul 20 at 8:37
vote up 2 vote down

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.

public class X
{
  protected int x;
  public synchronized void set( int value )
  {
    x = value;
  }
}

You can also use classes from the java.util.concurrent.atomic package, e.g. AtomicInteger or AtomicIntegerArray

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.