Java Concurrency in Practice. Brian Goetz, David Holmes, Doug Lea, Joseph Bowbeer, Joshua Bloch, Tim Peierls

Java Concurrency in Practice


Java.Concurrency.in.Practice.pdf
ISBN: 0321349601,9780321349606 | 384 pages | 10 Mb


Download Java Concurrency in Practice



Java Concurrency in Practice Brian Goetz, David Holmes, Doug Lea, Joseph Bowbeer, Joshua Bloch, Tim Peierls
Publisher: Addison-Wesley Professional




Thread Safety Whether an object needs to be thread-safe depends on whether it will be accessed from multiple threads. To do serious concurrent work in an JVM environment is different and it will thus require different knowledge. I recently read Java Concurrency in Practice by Brian Goetz. One more book to the java list. This paper will help you to collect the tools and practices needed to modernize the way you develop concurrent Java code. Every Java programmer must read it. Wait and notify is an old mechanism but still a popular interview subject – avoid to use it in practice. One way to obtain this knowledge would be to read books like "Java Concurrency in Practice". I didn't finish reading it, though I liked the part that I read. Java Concurrency in Practice is a book by the Java folks who designed ConcurrentHashMap and all those other tasty Java Concurrent Thingies . "Java Concurrency in Practice is an invaluable compilation of threading know-how for Java developers. I recently finished reading Java Concurrency in Practice. NotifyAll() will trigger the event and wake up Thread A. Prefer concurrency utilities to wait and notify).