Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been ask to build a multi-threaded java application using the java.util.concurrent library. I'm not familiar with this library, but have a good understanding of problems with multi-threaded code.

I'm looking for a tutorial and example code that shows this java library in use and it's best practises.

share|improve this question

4 Answers

up vote 12 down vote accepted

If you are a fast learner, I recommend the site www.java2s.com (Java API by Example).

Here's the full link for the concurrent package: http://www.java2s.com/Code/JavaAPI/java.util.concurrent/Catalogjava.util.concurrent.htm

EDIT: If you can spend some cash (and isn't in a hurry), I recommend this book: Java Concurrency in Practice http://www.amazon.com/Java-Concurrency-Practice-Brian-Goetz/dp/0321349601/ref=sr_1_1?ie=UTF8&qid=1290021702&sr=8-1

It is really full of examples and good practices.

share|improve this answer
5  
+1 The book is great – Jeremy Heiler Nov 17 '10 at 19:40
1  
+1 as well, I own that book and give it out to college new hire developers, it's the best introduction to Java concurrency – Spike Gronim Nov 17 '10 at 20:04

I usually prefer to learn from the primary source and recommend this one: http://download.oracle.com/javase/tutorial/essential/concurrency/index.html

Also I like very much book "Thinking in Java" by Bruce Eckel

share|improve this answer

Vogella's Java Concurrency / Multithreading Tutorial

Covers the basics (immutable data structures) and all relevant technologies - from Threads over the (Java 6, java.util.concurrent) Executor framework, and Futures/Callables, to the (coming Java 7) fork/join framework.

20 printed pages, not the best English, but to the point.

share|improve this answer

You can try my brief notes on the subject (it's only 10 pages). I've made this quick tutorial after reading some articles alongside with javadoc for java.util.concurrent.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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