I have a java class with a non-final int variable that I explicitly initialized in the constructor to 0. All other access to the variable is managed by a ReentrantLock. Do i have to worry that threads won't see the initial value of 0 because i didn't use the lock in the constructor?
|
|
Yes, you have to worry. To avoid problems in this case you need safe publication of the object reference. From Java Concurrency in Practice:
In other cases you can (theoretically) face the situation when result of Note, however, that if
|
|||||||||||
|
|
From Java Concurrency in Practice:
An object is not safely published just by not publishing its reference in the constructor. I.e. the constructor does not enforce the necessary happens-before relationship. So, even if you don't publish an object reference within its constructor, you can still have concurrency problems. For details and examples, see the relevant chapter in the book. In order to do a safe publication, the authors suggest the following ways:
As the authors note, objects that are passed through threadsafe collections are also safely published (e.g. item passed through a worker thread through LinkedBlockingQueue etc.). It is true that storing a value to primitive To summarize, you need to publish the object safely anyways, at which point the value is correctly set to 0 and the object is properly instantiated. |
|||
|
|