Reading after “Java Concurrency In Practice” for more concurrency examples?

前端 未结 2 1671
一个人的身影
一个人的身影 2021-01-30 18:25

Many people at SO adviced to dive into Java concurrency by reading Java Concurrency in Practice (JCIP), sometimes Doug Lea\'s book of 1999 is mentioned as well:

  • ht
2条回答
  •  猫巷女王i
    2021-01-30 18:40

    I dont know any books that offer better examples then JCiP. Lea's book of 1999 is a great read for understanding the primitives that were written for java 5. However, I asked Doug what book he recommends to read and he suggested The Art of Multiprocessor Programming. All examples that are available are written in Java (though there is some pseudo code).

    Alot of 1.6 concurrency implelemntations (skip list algorithm for one) is written based on this book. Its a great read for how to correctly implement complicated algorithms.

提交回复
热议问题