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.
|
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. |
|||
|
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. |
|||
|
|
In this case you should be able to use the classes in |
|||
|
|
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. |
|||
|
|
xin the other threads... – Martijn Courteaux Feb 13 '11 at 7:57