which Java thread programming books are recommendable? First of all I found "Java Thread Programming" by Paul Hyde, but this book seems to be very old (1999), so in my opinion uneligible for current requirements because there are for example surely no explanations about java.util.concurrent which was added to Java in release 1.5.
In "Effective Java" the book "Java concurrency in practice" by Brian Goetz was proposed, but this book is from 2006, so not very actual too. If I would purchase this, I'm afraid of missing something.
Then I found "Programming Concurrency on the JVM: Mastering Synchronization, STM, and Actors" by Venkat Subramaniam which is from July 28, 2011. Unfortunately I'm not sure if this book would be as good as "Java concurrency in practice".
Are there any other good thread programming books, would you chose the second one or the last one?

link|improve this question

1  
I attended the NoFluffJustStuff conference in SLC where Venkat Subramaniam gave a presentation on concurrency in the JVM. It was really good, and he talked about ways to do it without using "synchronize" (eg. STM, Actors). I REALLY enjoyed his presentation and would recommend his book just based on that. – Bigwheels Aug 3 '11 at 8:23
feedback

closed as not constructive by Bill the Lizard Oct 2 '11 at 18:47

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

up vote 4 down vote accepted

I'd say read both Venkat's and the Goetz book. Goetz is a landmark book but gets very advanced. I wouldn't worry about it being out of date, it covers the new (1.5) java package but with reference to the foundations that they demonstrate. Those foundations will pretty much always be relevant and so (IMO) will Concurrency In Practice. In particular it talks about some of the issues you'll face building scalable apps. I guess some of the measurements on the concurrent collections might be a little dated but the principles they're used to demonstrate, are as I say, still relevant.

The Subramaniam book covers the same kind of stuff as the Goetz book with respect to the fundamentals but doesn't go into so much depth. Combined with the fact that its written in a more accessible style means that its more easily digested (Goetz et al's book gets pretty heavy in the end) and it covers a broader range of topics. Goetz talks strictly about Java, where as Subramaniam talks about other VM based languages and some newer ideas around actors and STM. However, I found these not to be in enough depth for me.

I should point out I read the Beta of the Subramaniam book.

So I guess what to read depends on where you are in terms of experience with concurrent systems. If Java will be your first experience, I'd suggest an introductory book, perhaps, the thread chapter in Effective Java would be a good start? Subramaniam's book is a good all rounder and you'd get a lot out of it in terms of the basics and you can skip the more advanced stuff. If you don't mind working for it, Goetz is a gold mine but as I say you have to work for it. Either way, I'd suggest getting the basics (ie, non-java.util.conccurent) stuff under your belt first. A good understanding of basic stuff like wait/notify/synchronized will stand you in good stead when you come to the more sophisticated stuff.

Once that's all read and if you're interested in broader topics, I like Concurrency: State Models and Java Programs by Jeff Magee and Jeff Krame and High Performance Java Computing: Multi-threaded and Networked Programming (you have to pick and choose what's relevant these days but in terms of overall strategies/design, its a good book)

Avoid Java Threads by Scott Oaks, it really is out of date and anything by Books Llc (like Concurrency Control Algorithms: Non-Blocking Synchronization); they're just print outs of wikipedia but you might not realize that until you purchase them!

In summary, as a general rule, I'd ignore older books when they reference specific measurements (hotspot is awesome now!) but there's still value to be had from the fundamentals. Do you work with any veterans that can help direct?

Hope that helps.

link|improve this answer
Thanks for your explanation. In only know some basics in thread programming. The thread chapter in "Effective Java" gives me an overview about the latest thread programming topics, but I hardly have any experience with real thread programming because I have to deal with front-end development at work, so nobody could support me. I aspire to another position, so I want to specialize on back-end programming because I'm sick of fumbling around with JSF and all this current web technologies, libraries and frameworks. I think I will purchase both books as you proposed. – Bevor Aug 3 '11 at 9:34
Great. If you're interesting in frontend, there's usually a threading aspect. For example, Swing should be multi-threaded to be responsive (see SwingWorker class and the "event dispatching thread" idea). Also, you could explore potential for threaded problems with servlets and I imagine JSF). Best advice is to just practice! – Toby Aug 3 '11 at 9:38
feedback

In my opinion this is by far the best book Java Concurrency in Practice

Its written by Brian Goetz who wrote the concurrent package in Java 1.5

It has an excellent introduction too

link|improve this answer
feedback

I'd recommend Java concurrency in practice - while it's from 2006 it'll most likely contain all you need to know about the java.util.concurrent framework, which was written by the guy who wrote the book!

As far as I know there weren't any additions to the concurrent package in Java 6, so you won't be missing out on anything there. There is a new fork / join framework in it in Java 7, but I'm not sure if even the most recent books would cover that (and you can always read about it somewhere else anyway.)

I've got Java concurrency in practice - it truly is a great book and I'd definitely recommend it.

In terms of the Java thread programming book, as you point out it's old and won't cover the java.util.concurrent framework. It might be worth a read if you have to code on say, Java 1.4 or earlier that doesn't have this framework, but other than that I'd give it a miss.

link|improve this answer
feedback

Watch out for the new book Programming Concurrency on the JVM. Its available in early access and should be bang up to date.

There is a very good section on threads in Bruce Eckels book Thinking in Java.

JCIP will need updating to cope with the ForkJoin stuff in Java 7. Its still a great book though - recommended.

link|improve this answer
feedback

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