Java并发多线程常用包、类和接口

Java.util.concurrent.locks.Lock

         Lock接口

         ReadWriteLock接口

         Condition接口

         ReentrantLock

Java.util.concurrent.atomic

         AtomicInteger

AtomicLong

AtomicReference

Java.util.concurrent;

         Callable接口

         Future接口

         Thread类

         Executor执行器

         ExcutorService

         ThreadFactory接口

         ThreadPoolExecutor

         BlockingQueue接口

         CountDownLatch

         CyclicBarrier

         DelayQueue

         Delayed接口

         PriorityBlockingQueue

         ScheduledExecutorService接口

         Semaphore

         Exchanger

Java.lang

         Runnable接口

         Throwable接口

         ThreadLocal

其他:

Wait() notifyAll()

Interrupt()

ClosedByInterruptException

InterruptedException

UncaughtException

ConcurrentModificationException

Interruptible接口

TimeUnit

 

你可能感兴趣的:(并发多线程)