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 learned basics of threads and worked with some of the examples. I want to know if there is good book about Java Threading with best examples and best practices so that I can practice and understand.

share|improve this question
1  
thanks John. I'll definitely check it. – darkapple Apr 26 '11 at 13:00

closed as not constructive by Smi, Ben, tombom, Thomas Mueller, lserni Nov 9 '12 at 12:52

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 14 down vote accepted

Probably one of the best, very readable and mostly easy to understand: Java Concurrency in Practice

share|improve this answer
thanks. also found the answer in other threads. – darkapple Apr 26 '11 at 11:35
2  
Very thoroughly explains just about everything you'd want to know about threading and synchronization, with plenty of examples of both good and bad code. – tmbrggmn Apr 26 '11 at 11:37
2  
That being said, you'll probably want to look into Effective Java too. It seems that some of the best answers to java-related questions on this site come directly from its pages... – mre Apr 26 '11 at 12:04
i'm into Effective Java. I think its best book for Java. – darkapple Apr 26 '11 at 12:59

There are few examples in "Thinking in Java"

share|improve this answer
1  
TIJ has a very good section on threads. – Fortyrunner Apr 26 '11 at 20:57

Try Concurrent Programming in Java. ISBN-10: 0201310090

share|improve this answer

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