I have always been kind of confused by threads, and my class right now makes heavy use of them. We are using java.util.concurrent but I don't even really get the basics. UpDownLatch, Futures, Executors; these words just fly over my head. Can you guys suggest any resources to help learn what I need from the ground up?

Thanks a lot in advance!

link|improve this question

+1 just to counter the negative attitudes :). – Lirik Mar 9 '10 at 2:38
1  
@Lirik: You should vote up the question because it has merit, not just because you feel sorry for the OP. – Software Monk Mar 9 '10 at 2:53
2  
@Software Monkey: I wouldn't feel sorry for the OP if his question didn't have merit. – Lirik Mar 9 '10 at 5:17
feedback

3 Answers

up vote 7 down vote accepted

I'm assuming that you already went through the Java tutorial's threading chapter?

There are many good books on threading in general, but also specifically in Java.

For example, Java Concurrency in Practice

enter image description here

link|improve this answer
feedback

Read "Java Concurrency In Practice" by Brian Goetz. Great book.

Or Doug Lea's "Concurrent Programming In Java". Old school, terrific stuff. Pre-dates the concurrent package, but it's the basis for a lot of it.

link|improve this answer
1  
CPiJ is great for learning the solid foundations of concurrent programming – John Vint Mar 9 '10 at 17:24
feedback

If you are looking for a beginners book, check out Java Thread Programming by Paul Hyde . The other books like "Java Concurrency in Practice" and "Concurent Programming in Java" can be read to get an in depth understanding of concurrency (and specially the new java.util.concurent API) but may not be good for beginners.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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