Search Results

12
votes

How do you ensure multiple threads can safely access a class field?

If you use 'synchronized' on the setter here too, this code is threadsafe. However it may not be sufficiently granular; if you have 20 getters and setters and they're all synchronized, you may be c …
9
votes

Java synchronized methods: lock on object or class

Just to add a little detail to Oscar's (pleasingly succinct!) answer, the relevant section on the Java Language Specification is …