package com.example.demo.tread; import java.util.concurrent.BrokenBarrierException; import java.util.concurrent.CyclicBarrier; /** * @author wwj * 使用CyclicBarrier(回环栅栏)实现线程按顺序运行 */ public class CyclicBarrierDemo { /** *CyclicBarrier(回环栅栏):通过它可以实现让一组线程等待至某个状态之后再全部同时执行。 * 叫做回环是因为当所有等待线程都被释放以后,CyclicBarrier可以被重用。 * 我们暂且把这个状态就叫做barrier,当调用await()方法之后,线程就处于barrier了。 */ static CyclicBarrier barrier1 = new CyclicBarrier(2); static CyclicBarrier barrier2 = new CyclicBarrier(2); public static void main(String[] args) { final Thread thread1 = new Thread(new Runnable() { @Override public void run() { try { System.out.println("产品经理规划新需求"); //放开栅栏1 barrier1.await(); } catch (InterruptedException e) { e.printStackTrace(); } catch (BrokenBarrierException e) { e.printStackTrace(); } } }); final Thread thread2 = new Thread(new Runnable() { @Override public void run() { try { //放开栅栏1 barrier1.await(); System.out.println("开发人员开发新需求功能"); //放开栅栏2 barrier2.await(); } catch (InterruptedException e) { e.printStackTrace(); } catch (BrokenBarrierException e) { e.printStackTrace(); } } }); final Thread thread3 = new Thread(new Runnable() { @Override public void run() { try { //放开栅栏2 barrier2.await(); System.out.println("测试人员测试新功能"); } catch (InterruptedException e) { e.printStackTrace(); } catch (BrokenBarrierException e) { e.printStackTrace(); } } }); System.out.println("早上:"); System.out.println("测试人员来上班了..."); thread3.start(); System.out.println("产品经理来上班了..."); thread1.start(); System.out.println("开发人员来上班了..."); thread2.start(); } }
package com.example.demo.tread; import java.util.concurrent.Semaphore; /** * @author wwj * 使用Sephmore(信号量)实现线程按顺序运行 */ public class SemaphoreDemo { /** * Sephmore(信号量):Semaphore是一个计数信号量,从概念上将,Semaphore包含一组许可证, * 如果有需要的话,每个acquire()方法都会阻塞,直到获取一个可用的许可证, * 每个release()方法都会释放持有许可证的线程,并且归还Semaphore一个可用的许可证。 * 然而,实际上并没有真实的许可证对象供线程使用,Semaphore只是对可用的数量进行管理维护。 * * acquire():当前线程尝试去阻塞的获取1个许可证,此过程是阻塞的,当前线程获取了1个可用的许可证, * 则会停止等待,继续执行。 * * release():当前线程释放1个可用的许可证。 */ private static Semaphore semaphore1 = new Semaphore(1); private static Semaphore semaphore2 = new Semaphore(1); public static void main(String[] args) { final Thread thread1 = new Thread(new Runnable() { @Override public void run() { System.out.println("产品经理规划新需求"); semaphore1.release(); } }); final Thread thread2 = new Thread(new Runnable() { @Override public void run() { try { //:当前线程尝试去阻塞的获取1个许可证,此过程是阻塞的, // 当前线程获取了1个可用的许可证,则会停止等待,继续执行。 semaphore1.acquire(); System.out.println("开发人员开发新需求功能"); //当前线程释放1个可用的许可证。 semaphore2.release(); } catch (InterruptedException e) { e.printStackTrace(); } } }); Thread thread3 = new Thread(new Runnable() { @Override public void run() { try { semaphore2.acquire(); thread2.join(); semaphore2.release(); System.out.println("测试人员测试新功能"); } catch (InterruptedException e) { e.printStackTrace(); } } }); System.out.println("早上:"); System.out.println("测试人员来上班了..."); thread3.start(); System.out.println("产品经理来上班了..."); thread1.start(); System.out.println("开发人员来上班了..."); thread2.start(); } }
package com.example.demo.tread; import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; public class ThreadConditionDemo { /** * Condition(条件变量):通常与一个锁关联。需要在多个Contidion中共享一个锁时,可以传递一个Lock/RLock实例给构造方法,否则它将自己生成一个RLock实例。 * * Condition中await()方法类似于Object类中的wait()方法。 * * Condition中await(long time,TimeUnit unit)方法类似于Object类中的wait(long time)方法。 * * Condition中signal()方法类似于Object类中的notify()方法。 * * Condition中signalAll()方法类似于Object类中的notifyAll()方法。 */ private static Lock lock = new ReentrantLock(); private static Condition condition1 = lock.newCondition(); private static Condition condition2 = lock.newCondition(); /** * 为什么要加这两个标识状态? * 如果没有状态标识,当t1已经运行完了t2才运行,t2在等待t1唤醒导致t2永远处于等待状态 */ private static Boolean t1Run = false; private static Boolean t2Run = false; public static void main(String[] args) { final Thread thread1 = new Thread(new Runnable() { @Override public void run() { lock.lock(); System.out.println("产品经理规划新需求"); t1Run = true; condition1.signal(); lock.unlock(); } }); final Thread thread2 = new Thread(new Runnable() { @Override public void run() { lock.lock(); try { if(!t1Run){ System.out.println("开发人员先休息会..."); condition1.await(); } System.out.println("开发人员开发新需求功能"); t2Run = true; condition2.signal(); } catch (InterruptedException e) { e.printStackTrace(); } lock.unlock(); } }); Thread thread3 = new Thread(new Runnable() { @Override public void run() { lock.lock(); try { if(!t2Run){ System.out.println("测试人员先休息会..."); condition2.await(); } System.out.println("测试人员测试新功能"); lock.unlock(); } catch (InterruptedException e) { e.printStackTrace(); } } }); System.out.println("早上:"); System.out.println("测试人员来上班了..."); thread3.start(); System.out.println("产品经理来上班了..."); thread1.start(); System.out.println("开发人员来上班了..."); thread2.start(); } }
package com.example.demo.tread; import java.util.concurrent.CountDownLatch; /** * @author wwj * 通过CountDownLatch(倒计数)使线程按顺序执行 */ public class ThreadCountDownLatchDemo { /** * CountDownLatch:位于java.util.concurrent包下,利用它可以实现类似计数器的功能。 */ /** * 用于判断线程一是否执行,倒计时设置为1,执行后减1 */ private static CountDownLatch c1 = new CountDownLatch(1); /** * 用于判断线程二是否执行,倒计时设置为1,执行后减1 */ private static CountDownLatch c2 = new CountDownLatch(1); public static void main(String[] args) { final Thread thread1 = new Thread(new Runnable() { @Override public void run() { System.out.println("产品经理规划新需求"); //对c1倒计时-1 c1.countDown(); } }); final Thread thread2 = new Thread(new Runnable() { @Override public void run() { try { //等待c1倒计时,计时为0则往下运行 c1.await(); System.out.println("开发人员开发新需求功能"); //对c2倒计时-1 c2.countDown(); } catch (InterruptedException e) { e.printStackTrace(); } } }); Thread thread3 = new Thread(new Runnable() { @Override public void run() { try { //等待c2倒计时,计时为0则往下运行 c2.await(); System.out.println("测试人员测试新功能"); } catch (InterruptedException e) { e.printStackTrace(); } } }); System.out.println("早上:"); System.out.println("测试人员来上班了..."); thread3.start(); System.out.println("产品经理来上班了..."); thread1.start(); System.out.println("开发人员来上班了..."); thread2.start(); } }
package com.example.demo.tread; public class ThreadJoinDemo { /** * https://mp.weixin.qq.com/s/4emnIx0ihSVzShEnNRnAMA * [1] 使用线程的join方法 * [2] 使用主线程的join方法 * [3] 使用线程的wait方法 * [4] 使用线程的线程池方法 * [5] 使用线程的Condition(条件变量)方法 * [6] 使用线程的CountDownLatch(倒计数)方法 * [7] 使用线程的CyclicBarrier(回环栅栏)方法 * [8] 使用线程的Semaphore(信号量)方法 */ public static void main(String[] args) { final Thread thread1 = new Thread(new Runnable() { @Override public void run() { System.out.println("产品经理规划新需求"); } }); final Thread thread2 = new Thread(new Runnable() { @Override public void run() { try { thread1.join(); System.out.println("开发人员开发新需求功能"); } catch (InterruptedException e) { e.printStackTrace(); } } }); Thread thread3 = new Thread(new Runnable() { @Override public void run() { try { thread2.join(); System.out.println("测试人员测试新功能"); } catch (InterruptedException e) { e.printStackTrace(); } } }); /** * [1] 使用线程的join方法 */ System.out.println("早上:"); System.out.println("测试人员来上班了..."); thread3.start(); System.out.println("产品经理来上班了..."); thread2.start(); System.out.println("开发人员来上班了..."); thread1.start(); /** * [2] 使用主线程的join方法 */ // System.out.println("早上:"); // System.out.println("产品经理来上班了"); // System.out.println("测试人员来上班了"); // System.out.println("开发人员来上班了"); // thread1.start(); // //在父进程调用子进程的join()方法后,父进程需要等待子进程运行完再继续运行。 // System.out.println("开发人员和测试人员休息会..."); // thread1.join(); // System.out.println("产品经理新需求规划完成!"); // thread2.start(); // System.out.println("测试人员休息会..."); // thread2.join(); // thread3.start(); } }
package com.example.demo.tread; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; public class ThreadPoolDemo { /** * JAVA通过Executors提供了四种线程池 * * 单线程化线程池(newSingleThreadExecutor); * * 可控最大并发数线程池(newFixedThreadPool); * * 可回收缓存线程池(newCachedThreadPool); * * 支持定时与周期性任务的线程池(newScheduledThreadPool)。 * * 单线程化线程池(newSingleThreadExecutor):优点,串行执行所有任务。 * * submit():提交任务。 * * shutdown():方法用来关闭线程池,拒绝新任务。 */ static ExecutorService executorService = Executors.newSingleThreadExecutor(); public static void main(String[] args) throws Exception { final Thread thread1 = new Thread(new Runnable() { @Override public void run() { System.out.println("产品经理规划新需求"); } }); final Thread thread2 = new Thread(new Runnable() { @Override public void run() { System.out.println("开发人员开发新需求功能"); } }); Thread thread3 = new Thread(new Runnable() { @Override public void run() { System.out.println("测试人员测试新功能"); } }); System.out.println("早上:"); System.out.println("产品经理来上班了"); System.out.println("测试人员来上班了"); System.out.println("开发人员来上班了"); System.out.println("领导吩咐:"); System.out.println("首先,产品经理规划新需求..."); executorService.submit(thread1); System.out.println("然后,开发人员开发新需求功能..."); executorService.submit(thread2); System.out.println("最后,测试人员测试新功能..."); Future<Integer> submit = (Future<Integer>) executorService.submit(thread3); //Future<Integer> result = pool.submit(new ThreaTest()); // 会返回一个自定义类型的Future对象。 //注意,如果调用result.get()方法,会阻塞主线程,最坏的结果是所有线程顺序执行。 submit.get(); executorService.shutdown(); } }
package com.example.demo.tread; public class ThreadWaitDemo { /** * wait():是Object的方法,作用是让当前线程进入等待状态,同时, * wait()也会让当前线程释放它所持有的锁。 * “直到其他线程调用此对象的 notify() 方法或 notifyAll() 方法”,当前线程被唤醒(进入“就绪状态”) * * notify()和notifyAll():是Object的方法,作用则是唤醒当前对象上的等待线程; * notify()是唤醒单个线程,而notifyAll()是唤醒所有的线程。 * * wait(long timeout):让当前线程处于“等待(阻塞)状态”, * “直到其他线程调用此对象的notify()方法或 notifyAll() 方法,或者超过指定的时间量”, * 当前线程被唤醒(进入“就绪状态”)。 */ private final static Object myLock1 = new Object(); private final static Object myLock2 = new Object(); /** * 为什么要加这两个标识状态? * 如果没有状态标识,当t1已经运行完了t2才运行,t2在等待t1唤醒导致t2永远处于等待状态 */ private static Boolean t1Run = false; private static Boolean t2Run = false; public static void main(String[] args) { final Thread thread1 = new Thread(new Runnable() { @Override public void run() { synchronized (myLock1){ System.out.println("产品经理规划新需求..."); t1Run = true; myLock1.notify(); } } }); final Thread thread2 = new Thread(new Runnable() { @Override public void run() { synchronized (myLock1){ try { if(!t1Run){ System.out.println("开发人员先休息会..."); myLock1.wait(); } synchronized (myLock2){ System.out.println("开发人员开发新需求功能"); myLock2.notify(); } } catch (InterruptedException e) { e.printStackTrace(); } } } }); Thread thread3 = new Thread(new Runnable() { @Override public void run() { synchronized (myLock2){ try { if(!t2Run){ System.out.println("测试人员先休息会..."); myLock2.wait(); } System.out.println("测试人员测试新功能"); } catch (InterruptedException e) { e.printStackTrace(); } } } }); System.out.println("早上:"); System.out.println("测试人员来上班了..."); thread3.start(); System.out.println("产品经理来上班了..."); thread1.start(); System.out.println("开发人员来上班了..."); thread2.start(); } }