Notes
CtrlK
  • Introduce
  • Go
    • Grammar
    • System Library
    • Concurrency in Go
    • The Go Memory Model
    • Code Snippet
  • Rust
    • The Rust Programming Language
    • Rust by Example
  • JAVA
    • Preface
    • Grammar
    • Class Libraries
    • Concurrency
      • Preface
      • JMM
      • Synchronized & CAS
      • Deadlock
      • Thread
      • Lock & Condition
      • Utility Class
      • Thread-safe Collection
      • Atomic Class
      • Fork/Join
      • Concurrency Design Patterns
    • JVM
    • Web Container
    • Spring
    • Tuning
  • Computer Science
    • Computer Organization
    • Algorithm
    • Network Protocol
    • Operating System
    • Design Patterns
    • Distributed System
  • database
    • InfluxDB
    • MySQL
    • Redis
    • Elasticsearch
    • HBase
    • Kafka
    • ZooKeeper
  • Reading
    • RocketMQ
    • 演说之禅
    • So Good They Can't Ignore You
    • 学会提问
    • Lecture
  • Other
    • v2ray
    • Kubernetes
    • Git
    • Maven
    • Anaconda And Conda
    • Fuck! Shit!
  • Open source contribution
Powered by GitBook
On this page

Was this helpful?

  1. JAVA

Concurrency

  • 理论基础

  • Java内存模型

  • Synchronized、CAS

  • 死锁

  • Thread

  • Lock & Condition:ReentrantLock、ReadWriteLock、StampedLock

  • 工具类:

    • Semaphore

    • CountDownLatch

    • CyclicBarrier

    • ThreadPoolExecutor

    • Executors

    • Future

    • FutureTask

    • CompletableFuture

    • CompletionStage

    • CompletionService

  • 线程安全的集合类

  • 原子类

  • Fork/Join

  • 并发设计模式

PreviousRMINextPreface

Last updated 6 years ago

Was this helpful?