1.executor接口,使用executor接口的子接口ExecutorService用来创建线程池2.Lock接口下的ReentrantLock类,实现同步,比如三个线程循环打印ABCABCABC...3.atomic包,使用AtomicInteger类的incrementAndGet()方法来实现原子操作,比如a++4.Callable接口,重写call方法,实现多线程5.concarrenHashMap,线程安全的HashMap