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 …
3
votes

Which Java thread is hogging the CPU?

Try looking at the Hot Thread Detector plugin for visual VM -- it uses the ThreadMXBean API to take multiple C …
1
vote

Good blogs about multi-threaded development?

Just a few recommendations on top of what's already been discussed, in approximate descending order of usefulness (according to me, anyway): Alex Miller (as mentioned by spdenne) main …