What's Hot| Upload Video| Email this Page| Your Account

Java Concurrency in Practice

"I was fortunate indeed to have worked with a fantastic team on the design and implementation of the concurrency features added to the Java platform in Java 5.0 and Java 6. Now this same team provides the best explanation yet of these new features, and of concurrency in general. Concurrency is no longer a subject for advanced users only. Every Java developer should read this book." --Martin Buchholz JDK Concurrency Czar, Sun Microsystems "For the past 30 years, computer performance has been driven by Moore's Law; from now on, it will be driven by Amdahl's Law. Writing code that effectively exploits multiple processors can be very challenging. Java Concurrency in Practice provides you with the concepts and techniques needed to write safe and scalable Java programs for today's--and tomorrow's--systems." --Doron Rajwan Research Scientist, Intel Corp "This is the book you need if you're writing--or designing, or debugging, or maintaining, or contemplating--multithreaded Java programs. If you've ever had to synchronize a method and you weren't sure why, you owe it to yourself and your users to read this book, cover to cover."--Ted Neward Author of Effective Enterprise Java "Brian addresses the fundamental issues and complexities of concurrency with uncommon clarity. This book is a must-read for anyone who uses threads and cares about performance." --Kirk Pepperdine CTO, JavaPerformanceTuning.com "This book covers a very deep and subtle topic in a very clear and concise way, making it the perfect Java Concurrency reference manual. Each page is filled with the problems (and solutions!) that programmers struggle with every day. Effectively exploiting concurrency is becoming more and more important now that Moore's Law is delivering more cores but not faster cores, and this book will show you how to do it." --Dr. Cliff Click Senior Software Engineer, Azul Systems "I have a strong interest in concurrency, and have probably written more thread deadlocks and made more synchronization mistakes than most programmers. Brian's book is the most readable on the topic of threading and concurrency in Java, and deals with this difficult subject with a wonderful hands-on approach.This is a book I am recommending to all my readers of The Java Specialists' Newsletter, because it is interesting, useful, and relevant to the problems facing Java developers today." --Dr. Heinz Kabutz The Java Specialists' Newsletter "I've focused a career on simplifying simple problems, but this book ambitiously and effectively works to simplify a complex but critical subject: concurrency. Java Concurrency in Practice is revolutionary in its approach, smooth and easy in style, and timely in its delivery--it's destined to be a very important book." --Bruce Tate Author of Beyond Java "Java Concurrency in Practice is an invaluable compilation of threading know-how for Java developers. I found reading this book intellectually exciting, in part because it is an excellent introduction to Java's concurrency API, but mostly because it captures in a thorough and accessible way expert knowledge on threading not easily found elsewhere." --Bill Venners Author of Inside the Java Virtual Machine Threads are a fundamental part of the Java platform. As multicore processors become the norm, using concurrency effectively becomes essential for building high-performance applications.Java SE 5 and 6 are a huge step forward for the development of concurrent applications, with improvements to the Java Virtual Machine to support high-performance, highly scalable concurrent classes and a rich set of new concurrency building blocks. In Java Concurrency in Practice, the creators of these new facilities explain not only how they work and how to use them, but also the motivation and design patterns behind them. However, developing, testing, and debugging multithreaded programs can still be very difficult; it is all too easy to create concurrent programs that appear to work, but fail when it matters most: in production, under heavy load. Java Concurrency in Practice arms readers with both the theoretical underpinnings and concrete techniques for building reliable, scalable, maintainable concurrent applications. Rather than simply offering an inventory of concurrency APIs and mechanisms, it provides design rules, patterns, and mental models that make it easier to build concurrent programs that are both correct and performant.This book covers: *Basic concepts of concurrency and thread safety *Techniques for building and composing thread-safe classes *Using the concurrency building blocks in java.util.concurrent *Performance optimization dos and don'ts *Testing concurrent programs *Advanced topics such as atomic variables, nonblocking algorithms, and the Java Memory Model  more

ComparePrices

Get price with tax & shipping*
Sold at 5 Stores
title,descmerchant price seeit
Smarter Choice
Java Concurrency in Practice

David Holmes, Joshua Bloch, Doug Lea, Tim Peierls, Joseph Bowbeer / 2006 / 403 pages

  • $41.99
  • Free Shipping
  • Coupon

    2 coupons available

    • Code:
    • Detail:

      Free USPS shipping at DeepDiscount.com

    • Expires:Nov-20-2010
    • Restriction:Unknow
    • Code:No Code Required
    • Detail:

      Free Standard shipping on any order at DeepDiscount.

    • Expires:Aug-31-2010
    • Restriction:Unknow
See it
Java Concurrency in Practice

"I was fortunate indeed to have worked with a fantastic team on the design and implementation of the concurrency...

  • $33.52
  • Free Shipping
  • Coupon

    1 coupon available

    • Code:
    • Detail:

      Free shipping on the first item you order at HotBookSale.com

    • Expires:Nov-22-2010
    • Restriction:Unknow
See it
Java Concurrency in Practice (Books)

Programming Languages - Java Computers - As processors become faster and multiprocessor systems become cheaper, the...

  • $60
  • $40.49
  • Coupon

    3 coupons available

    • Code:J7M3C9V
    • Detail:

      20% off single item when you use Master card at Barnes & Noble

    • Expires:Dec-31-2009
    • Restriction:Unknow
    • Code:No Code Required
    • Detail:

      Free Shipping on orders of $25 at Barnes & Noble

    • Expires:Jun-30-2010
    • Restriction:see site for more details
    • Code:
    • Detail:

      GET FREE SHIPPING ON ORDERS OF $25 OR MORE at Barnes and Noble

    • Expires:Dec-31-2009
    • Restriction:Unknow
See it
Java Concurrency in Practice

Pages: 384, Paperback, Addison-Wesley Professional

  • $37.79
  • Coupon

    1 coupon available

    • Code:No Code Required
    • Detail:

      FREE Shipping on orders over $25 at Amazon.

    • Expires:Dec-31-2010
    • Restriction:Some restrictions apply. See site for details.
See it
Java Concurrency in Practice

Provides information on building concurrent applications using Java. Author: Brian Goetz Publisher: Addison-Wesley...

See it

*Shipping costs are based on an estimate of the lowest shipping rate available within the contiguous US, excluding Alaska and Hawaii. Only merchants with this product in stock are listed (Merchants with this product back ordered have been removed from this list).

Do you see a pricing error? Please let us know by filling out a simple form: Click here

MoreStores

Write a review

ProductReviews97/100 (56 Reviews)

Recent Reviews

5/5
From: Amazon
Posted: Dec-03-2008
you're not threadsafe

you can't just synchronize everything... and that's the point of this book. synchronizing is critical but most of us do it incorrectly without a thorough understanding of the jvm. this book has given me some useful concurrency patterns...

read full review | report as inappropriate
5/5
From: Amazon
Posted: Nov-21-2008
The definitive guide to concurrency with Java

Prior to this book, I spent many years trying to understand concurrency with Java, but I failed. During that time, I actually read four books.When it comes to concurrency (thread safety and multi-threading), this book is a definitive...

read full review | report as inappropriate
5/5
From: Amazon
Posted: Nov-20-2008
This book build understanding in concurrency from ground up

This book is an essential resource for developer using the java.util.concurrency classes. It is written in a logical path that allows the reader to learn and understand not just the classes to use in writing concurrent applications but...

read full review | report as inappropriate
5/5
From: Amazon
Posted: Nov-10-2008
Superb book.

Having recently required to use Java in my work I needed a book to help explain the use of concurrency in Java. I have used C++ and Ada extensively in the defence environment for many years working on many multithreaded systems. For...

read full review | report as inappropriate

Selected Reviews

5/5
From: Amazon
Posted: Dec-03-2008
you're not threadsafe

you can't just synchronize everything... and that's the point of this book. synchronizing is critical but most of us do it incorrectly without a thorough understanding of the jvm. this book has given me some useful concurrency patterns...

read full review | report as inappropriate
3/5
From: Amazon
Posted: May-25-2008
Agree With Previous Viewer--Paper Quality Horrible!

Though the book is admittedly good and valuable in content, the paper quality of the pages is absolutely horrible! One can see through to the next page, and using a highlighter for emphasis is next to impossible. I will never buy this...

read full review | report as inappropriate
9
Page 1 of 1

SimilarProducts

Channel Directory:

Science Fiction |  Comic Books |  Cookbooks |  Biographies |  Children's Books
close
close

More legal stuff: Smarter.com is a comparison shopping website that compares prices and products at online stores to help consumers save money. Stores are responsible for providing us with accurate price and product information, including the proper codes for coupons, discounts and rebates. Tax and shipping costs are estimates. Please confirm all costs before making your final purchase at the online store. All merchant ratings, product reviews and video reviews are submitted by shoppers or third-party websites. We are not responsible for their content. If you have any concerns about content on our website, please contact us.