Java-ConcurrentProgramming-List
Java Concurrent Programming List
Overview
-
2014-Java 并发导论:由于之前工作中的疏忽,在使用 Java 多线程并发的时候出了问题,遂决心全面学习并发相关知识。写作本文的意图只是希望在写作过程中把想不清楚或是一时无法掌握的地方反复揣摩记录下来。
-
2015-Java Concurrency/Multithreading Tutorial: The trail will primarily be concerned with multithreading in Java, but some of the problems occurring in multithreading are similar to problems occurring in multitasking and in distributed systems.
-
2017-面试小结之并发篇:最近面试一些公司,被问到的关于 Java 并发编程的问题,以及自己总结的回答。
-
2017-Java 线程池的理论与实践:本文将会包含以下内容:Java 中的 Thread 与操作系统中的线程的关系、线程切换的各种开销、ThreadGroup 存在的意义、使用线程池减少线程开销、Executor 的概念、ThreadPoolExecutor 中的一些具体实现、如何监控线程的健康、参考 ThreadPoolExecutor 来设计适合自己的线程模型。
-
2017-Using the Timer Class to Schedule Tasks: Setting up simple scheduled tasks within an app is easy with the Timer class. There’s a lot of versatility in the class, giving you plenty of customization.
-
Java Concurrency Patterns and Features : Concurrency Patterns and features found in Java, through multithreaded programming. Threads, Locks, Atomics and more.
-
2017-Java Concurrency / Multithreading Basics: Concurrency is the ability to do more than one thing at the same time.
Resource
Collection
-
2019-threadandjuc : ⭐⭐⭐⭐ 高并发-高可靠-高性能 three-high-import 导入系统-高并发多线程进阶
-
2019-CL0610/Java-concurrency : 整个系列文章为 Java 并发专题,一是自己的兴趣,二是,这部分在实际理解上很有难度,另外在面试过程中也是经常被问到。所以在学习过程中,记录了 Java 并发相关的基础知识,一是自己对知识能够建立体系,同时也希望有幸能够对其他人有用。
Series
-
死磕 Java 并发系列 #Series#:J.U.C 之 AQS:CLH 同步队列、J.U.C 之 AQS:AQS 简介、Java 内存模型之总结、Java 内存模型之从 JMM 角度分析 DCL、Java 内存模型之分析 volatile、死磕 Java 系列博客、Java 内存模型之重排序、 Java 内存模型之 happens-before
-
2021-RedSpider Concurrent #Series#: 这是 RedSpider 社区成员原创与维护的 Java 多线程系列文章。
Concurrency Primitives | 并发单元
-
2017-深度解析 Java 线程池的异常处理机制: 线程池提交的任务如果没有 catch 异常,那么会抛到哪里去?
-
2017-从 0 到 1 学习 Java 线程池 #Series#:该系列文章总共三篇,介绍了 Java 线程池的使用以及原理,并且最后会实现一个基本的线程池。
Async Patterns | 异步模式
Concurrency Control | 并发控制
Variables | 变量
-
深入理解 Java 之 ThreadLocal 工作原理: 简单理解“Thread”即线程,“Local”即本地。连续起来理解就是 每个线程本地独有的。
Coroutine
-
2017-Project Loom: Fibers and Continuations for the Java Virtual Machine
-
2017-Java CompletableFuture Tutorial with Examples: In this post I’ll give you a detailed explanation of CompletableFuture and all its methods using simple examples.