You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
565 B
Markdown

# Java并发编程
## 目录
- 协作
- 信号量 [Semaphore]
- 管程 [Monitor]
- Lock & Condition
- CountDownLatch
- CyclicBarrier
- Phaser
- Exchange
- 互斥
- 无锁
- 不变模式
- 线程本地存储
- CAS
- Copy-on-Write
- 原子类
- 互斥锁
- synchronized
- Lock
- 读写锁
- 分工
- Executor与线程池
- Fork/Join
- Future
- Guarded Suspension 模式
- Balking 模式
- Thread-Per-Message 模式
- 生产者-消费者 模式
- Worker Thread 模式
- 两阶段终止模式