vote up 4 vote down star
3

Which book or books would you recommend for learning the ins and outs of Java 5's Concurrency and most importantly why?

What I'm looking for exactly is a book which especially goes through the Java 5's new concurrency mechanisms (i.e. java.util.concurrent package) and could also be used to learn most of what there is to learn about concurrency in general. Also feel free to recommend any other book you think could help me in tackling this important topic.

flag

7 Answers

vote up 12 vote down check

Java Concurrency in Practice is the best introduction. It describes all the Java 5 concurrency utilities and how to use them. It also covers what the core issues are with concurrent programming in general.

Concurrent Programming in Java by Doug Lea is a good reference. A lot of java.util.concurrent is based on this book.

link|flag
1  
I'd say that JCiP wins over CPiJ, especially since Doug Lea is one of the co-authors. Lea's original book was very helpful in the old days but plenty of that information is overcome by events now. – Bob Cross Aug 6 at 10:24
vote up 2 vote down

Java Concurrency in Practice by Brian Goetz with Tim Peierls, Josh Bloch, Doug Lea etc

link|flag
vote up 2 vote down

10 brief laws of Java concurrency with explanations: http://www.javaspecialists.eu/archive/Issue146.html

link|flag
vote up 0 vote down

There is also a nice chapter on Java concurrency in "Clean Code" by Robert C. Martin. Of course, one chapter does not justify buying a book. But in this case the other chapters are worth reading, too :-)

link|flag
Clean Code is a great book as is and I've already actually read it :) – Esko Aug 6 at 10:26
vote up 0 vote down

JCIP as noted is probably the de facto reference. I would however suggest also considering the concurrency chapter in Effective Java 2nd Edition by Joshua Bloch. Beyond just concurrency, there is a wealth of knowledge in that book.

link|flag
vote up 0 vote down

Is there any open source library which can show some implementations of the advice in JCIP...this would help understand the design practices !!

link|flag
vote up 1 vote down

The Art of Multiprocessor Programming

link|flag

Your Answer

Get an OpenID
or

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