Can anyone please suggest books that give a sound understanding of threads in java and concurrency in threads.

link|improve this question

60% accept rate
I need a book that has lots of programs to improve understanding – grassPro Mar 31 '11 at 4:51
feedback

closed as not constructive by Jeff Atwood Sep 19 '11 at 7:07

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

Java Concurrency in practice is the definitive guide, if you already know threads.

If you first need to learn how to use threads at all, see the Java Tutorial - Lesson Concurrency.

link|improve this answer
Java Concurrency in practice does cover threads too. Great book, excellent examples of java style and coverage of concurrency topics. – Philip JF Mar 31 '11 at 5:03
@Philip: Yes, but I believe that using threads first, and understand the deep intrinsics of lockings later might be a more enyable experience. Therefore the link to the Java Tutorial. – Daniel Mar 31 '11 at 5:05
feedback
  1. Java Concurrency in Practice by Brian Goetz, Tim Peierls, Joshua Bloch, Joseph Bowbeer, David Holmes, Doug Lea
  2. The Art of Multiprocessor Programming by Maurice Herlihy, Nir Shavit
  3. Concurrent Programming in Java(TM): Design Principles and Pattern (2nd Edition) by Doug Lea
  4. The Java Language Specification (3rd Edition): Chapter 17. Threads and Locks
link|improve this answer
2  
The Art of Multiprocessor Programming is a very advanced book. Really for people who want to write low-level concurrent data-structures and utilities. If you want to do that, then it is awesome! – Jed Wesley-Smith Mar 31 '11 at 6:07
@Jed: +1. Excellent, excellent book and easier than one might expect for such heady content; definitely not a beginner text but rewards the investment. – andersoj Mar 31 '11 at 12:43
feedback

Doug Lea's book is good. Haven't read it completely though. I found the O'Reilly book "Java Threads" by Scott Oaks, Henry Wong very good.

link|improve this answer
feedback

Apart from Daniel's suggestion of Java - Concurrency in Practice, I would suggest some more for getting an indepth knowledge of Threading and Concurrency.

link|improve this answer
feedback

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