Java articles
237 subscribers
245 links
Channel providing you with the Java and software development industry related content
Download Telegram
From its creation, Java has supported key concurrency
concepts such as threads and locks. This amazing Refcard will help
you working with multi-threaded programs to
understand core concurrency concepts and how to apply them.
#java #concurrency #middle
https://dzone.com/storage/assets/7862400-dzone-rc061-corejavaconcurrency.pdf
This amazing Refcard will help you working with multi-threaded programs to understand core concurrency concepts and how to apply them. You can also use it as a reference of the core library.
#java #concurrency #magazine #middle #senior
https://dzone.com/refcardz/core-java-concurrency?chapter=1
Concurrent programming: Two techniques to avoid shared state
Most certainly the more you learn about multi-threaded programming, the harder it gets. Coordinating multiple threads modifying the same data is complicated. In the following article, you are going to explore two techniques that can help you: Copy before modification and Asynchronous modification using a single thread.
#java #concurrency #middle
http://vmlens.com/articles/cp/2_techniques_to_avoid_shared_state/