vote up 2 vote down star

I'm looking for a modern java threading book. I've quite enjoyed reading Taming Java Threads by Allen Holub, but it's a little old now. That was 8 years ago.

I want the knowledge develop concurrent and industry standard multi-threading applications.

Suggestions? Or even online resources?

flag

57% accept rate

6 Answers

vote up 19 vote down check

Java Concurrency in Practice by Brian Goetz, et al.

This books will go into the java.util.concurrent package which was introduced in Java 5, which is the "new" way of doing concurrency in the Java language.

And I should add, the et al. part includes people who were personally involved in getting the concurrency utilities out in Java 5. The About the Authors page includes the list of authors and their impressive backgrounds.

And, The Java Tutorials has a section on Lesson: Concurrency which covers topics from Threads up to the java.util.concurrent features as well.

link|flag
1  
Excellent book. I will recommend it even for non-java developers, like myself :) – Dani van der Meer May 1 at 9:03
1  
Definitely Java Concurrency in Practice. – Stephen Denne May 1 at 9:15
I'm reading Java Concurrency in Practice, even the introduction is good! :) Thanks. – JavaRocky May 1 at 11:50
1  
JCIP is a much more accessible book that Doug Lea's book even though Doug Lea wrote most of the new concurrency features in Java 5. – Fortyrunner May 1 at 14:55
Excellent read! – Adrian Kuhn Aug 7 at 13:01
vote up 1 vote down

You might find it quite useful to study the kinds of implementations you can create with immutable objects.

For example Chris Okasaki's book "Purely Functional Data Structures" or his thesis (PDF)

link|flag
vote up 1 vote down

Must read "Java Concurrency in Practice" by Brian Goetz.

link|flag
vote up 3 vote down

You can find some reading recommendations at the end of the Java Concurrency tutorial: http://java.sun.com/docs/books/tutorial/essential/concurrency/further.html

I'd advocate for the 1st one as the 2nd has already been recommended:

Concurrent Programming in Java: Design Principles and Pattern (2nd Edition) by Doug Lea. A comprehensive work by a leading expert, who's also the architect of the Java platform's concurrency framework.

Doug Lea is well known in the java community about concurrency topics, he is an expert. Fetch his book!

link|flag
+1 great list of books – Peter Štibraný May 1 at 9:20
vote up 1 vote down

Java Threads book is pretty good too, although not as fresh as Java Concurrency in Practice. JCiP is a must read today.

link|flag
vote up 0 vote down

Well, it is not a direct answer to your question but if you are really into concurrent business clojure could be interesting for you.

link|flag
Thanks, great link! – JavaRocky May 1 at 22:32

Your Answer

Get an OpenID
or

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