Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, I have a global variable x, what should I use to allows many threads get the value of x at a time but only one thread can change the value of x variable at a time?

Any example? Thanks.

share|improve this question
Just don't assign a value to x in the other threads... – Martijn Courteaux Feb 13 '11 at 7:57

3 Answers

up vote 1 down vote accepted

If you want to allow multiple concurrent reads, then you will want to use a ReadWriteLock (the ReentrantReadWriteLock class implements that particular interface) to protect access.

share|improve this answer
simple Lock (or ReentrantLock if you don't think it should be avoided) should be used in most cases (I would say in all cases), even if you have many concurrent reads and rare writes from single thread. (More info here)[stackoverflow.com/questions/4659295/…. it's a discussion why shared_mutex (analog of Java ReadWriteLock) was rejected by C++ standard committee. Considerations are language-agnostic. – Andy T Feb 13 '11 at 13:59

In this case you should be able to use the classes in java.util.concurrent.atomic. These classes are containers for a single value that allow lock-free access. If you don't need a compare-and-swap operation you can use a volatile field as long as you're using at least java 1.5.

share|improve this answer
Depends on the type of variable. – user166390 Feb 13 '11 at 6:00

You can use a ReadWriteLock to acheive this. Java java.util.concurrent.locks package provides different types of locks. You can use ReentrantReadWriteLock from this package. Code samples can be found in javadoc.

If the global variable is a basic data type, AtomicLong, AtomicInt etc in java.util.concurrent.atomic package should also be able to solve the usecase.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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