Java多线程同步器代码详解
同步器
为每种特定的同步问题提供了解决方案,同步器是一些使线程能够等待另一个线程的对象,允许它们协调动作。最常用的同步器是countdownlatch和semaphore,不常用的是barrier 和exchanger
semaphore
semaphore【信号标;旗语】,通过计数器控制对共享资源的访问。
测试类:
package concurrent; import concurrent.thread.semaphorethread; import java.util.concurrent.semaphore; /** * 拿客 * www.coderknock.com * qq群:213732117 * 创建时间:2016年08月08日 * 描述: */ public class semaphoretest { public static void main(string[] args) { //在thread里声明并不是同一个对象 semaphore semaphore = new semaphore(3); semaphorethread testa = new semaphorethread("a", semaphore); semaphorethread testb = new semaphorethread("b", semaphore); semaphorethread testc = new semaphorethread("c", semaphore); semaphorethread testd = new semaphorethread("d", semaphore); semaphorethread teste = new semaphorethread("e", semaphore); semaphorethread testf = new semaphorethread("f", semaphore); semaphorethread testg = new semaphorethread("g", semaphore); testa.start(); testb.start(); testc.start(); testd.start(); teste.start(); testf.start(); testg.start(); } }
线程写法:
package concurrent.thread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.concurrent.semaphore; /** * 拿客 * www.coderknock.com * qq群:213732117 * 创建时间:2016年08月08日 * 描述: */ public class semaphorethread extends thread { private static final logger logger = logmanager.getlogger(semaphorethread.class); //创建有3个信号量的信号量计数器 public semaphore semaphore; public semaphorethread(string name, semaphore semaphore) { setname(name); this.semaphore = semaphore; } @override public void run() { try { logger.debug(getname() + " 取号等待... " + system.currenttimemillis()); //取出一个信号 semaphore.acquire(); logger.debug(getname() + " 提供服务... " + system.currenttimemillis()); sleep(1000); logger.debug(getname() + " 完成服务... " + system.currenttimemillis()); } catch (interruptedexception e) { e.printstacktrace(); } logger.debug(getname() + " 释放... " + system.currenttimemillis()); //释放一个信号 semaphore.release(); } }
执行结果【以下所有输出结果中[]中为线程名称- 后为输出的内容】:
[c] - c 取号等待... 1470642024037 [f] - f 取号等待... 1470642024036 [e] - e 取号等待... 1470642024036 [b] - b 取号等待... 1470642024037 [d] - d 取号等待... 1470642024037 [a] - a 取号等待... 1470642023965 [d] - d 提供服务... 1470642024039 [c] - c 提供服务... 1470642024039 [g] - g 取号等待... 1470642024036 [f] - f 提供服务... 1470642024040 [d] - d 完成服务... 1470642025039 [c] - c 完成服务... 1470642025039 [d] - d 释放... 1470642025040 [f] - f 完成服务... 1470642025040 [c] - c 释放... 1470642025041 [b] - b 提供服务... 1470642025042 [a] - a 提供服务... 1470642025042 [f] - f 释放... 1470642025043 [e] - e 提供服务... 1470642025043 [a] - a 完成服务... 1470642026043 [b] - b 完成服务... 1470642026043 [b] - b 释放... 1470642026043 [a] - a 释放... 1470642026043 [g] - g 提供服务... 1470642026044 [e] - e 完成服务... 1470642026045 [e] - e 释放... 1470642026045 [g] - g 完成服务... 1470642027045 [g] - g 释放... 1470642027046
可以看到,当3个信号量被领取完之后,之后的线程会阻塞在领取信号的位置,当有信号量释放之后才会继续执行。
countdownlatch
countdownlatch【倒计时锁】,线程中调用countdownlatch.await()使进程进入阻塞状态,当达成指定次数后(通过countdownlatch.countdown())继续执行每个线程中剩余的内容。
一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。
用给定的计数 初始化 countdownlatch。由于调用了 countdown() 方法,所以在当前计数到达零之前,await 方法会一直受阻塞。之后,会释放所有等待的线程,await 的所有后续调用都将立即返回。这种现象只出现一次——计数无法被重置。如果需要重置计数,请考虑使用 cyclicbarrier。
测试类:
package concurrent.thread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.concurrent.countdownlatch; public class package concurrent; import concurrent.thread.countdownlatchthread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.concurrent.countdownlatch; import java.util.concurrent.cyclicbarrier; /** * 拿客 * www.coderknock.com * qq群:213732117 * 创建时间:2016年08月08日 * 描述: */ public class countdownlatchtest { private static final logger logger = logmanager.getlogger(countdownlatchtest.class); public static void main(string[] args) throws interruptedexception { //设定当达成三个计数时触发 countdownlatch countdownlatch = new countdownlatch(3); new countdownlatchthread("a", countdownlatch).start(); new countdownlatchthread("b", countdownlatch).start(); new countdownlatchthread("c", countdownlatch).start(); new countdownlatchthread("d", countdownlatch).start(); new countdownlatchthread("e", countdownlatch).start(); for (int i = 3; i > 0; i--) { thread.sleep(1000); logger.debug(i); countdownlatch.countdown(); } } }
线程类:
package concurrent.thread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.concurrent.countdownlatch; public class countdownlatchthread extends thread { private static final logger logger = logmanager.getlogger(countdownlatchthread.class); //计数器 private countdownlatch countdownlatch; public countdownlatchthread(string name, countdownlatch countdownlatch) { setname(name); this.countdownlatch = countdownlatch; } @override public void run() { logger.debug("执行操作..."); try { sleep(1000); } catch (interruptedexception e) { e.printstacktrace(); } logger.debug("等待计数器达到标准..."); try { //让线程进入阻塞状态,等待计数达成后释放 countdownlatch.await(); logger.debug("计数达成,继续执行..."); } catch (interruptedexception e) { e.printstacktrace(); } } }
执行结果:
[e] - 执行操作... [b] - 执行操作... [a] - 执行操作... [c] - 执行操作... [d] - 执行操作... [main] debug concurrent.countdownlatchtest - 3 [b] - 等待计数器达到标准... [e] - 等待计数器达到标准... [c] - 等待计数器达到标准... [d] - 等待计数器达到标准... [a] - 等待计数器达到标准... [main] debug concurrent.countdownlatchtest - 2 [main] debug concurrent.countdownlatchtest - 1 [e] - 计数达成,继续执行... [c] - 计数达成,继续执行... [b] - 计数达成,继续执行... [d] - 计数达成,继续执行... [a] - 计数达成,继续执行...
cyclicbarrier
cyclicbarrier【cyclic周期,循环的 barrier屏障,障碍】循环的等待阻塞的线程个数到达指定数量后使参与计数的线程继续执行并可执行特定线程(使用不同构造函数可以不设定到达后执行),其他线程仍处于阻塞等待再一次达成指定个数。
测试类:
package concurrent; import concurrent.thread.cyclicbarrierthread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.concurrent.cyclicbarrier; public class cyclicbarriertest { private static final logger logger = logmanager.getlogger(cyclicbarriertest.class); public static void main(string[] args) { //可以使用cyclicbarrier(int parties)不设定到达后执行的内容 cyclicbarrier cyclicbarrier = new cyclicbarrier(5, () -> { logger.debug("---计数到达后执行的内容----"); } ); new cyclicbarrierthread("a", cyclicbarrier).start(); new cyclicbarrierthread("b", cyclicbarrier).start(); new cyclicbarrierthread("c", cyclicbarrier).start(); new cyclicbarrierthread("d", cyclicbarrier).start(); new cyclicbarrierthread("e", cyclicbarrier).start(); new cyclicbarrierthread("a2", cyclicbarrier).start(); new cyclicbarrierthread("b2", cyclicbarrier).start(); new cyclicbarrierthread("c2", cyclicbarrier).start(); new cyclicbarrierthread("d2", cyclicbarrier).start(); new cyclicbarrierthread("e2", cyclicbarrier).start(); //需要注意的是,如果线程数不是上面设置的等待数量的整数倍,比如这个程序中又加了个线程, // 那么当达到5个数量时,只会执行达到时的五个线程的内容, // 剩余一个线程会出于阻塞状态导致主线程无法退出,程序无法结束 // new cyclicbarrierthread("f", cyclicbarrier).start();//将这行注释去掉程序无法自动结束 } }
线程类:
package concurrent.thread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.random; import java.util.concurrent.brokenbarrierexception; import java.util.concurrent.cyclicbarrier; public class cyclicbarrierthread extends thread { private static final logger logger = logmanager.getlogger(cyclicbarrierthread.class); private cyclicbarrier cyclicbarrier; public cyclicbarrierthread(string name, cyclicbarrier cyclicbarrier) { super(name); this.cyclicbarrier = cyclicbarrier; } @override public void run() { logger.debug("执行操作..."); try { int time = new random().nextint(10) * 1000; logger.debug("休眠" + time/1000 + "秒"); sleep(time); } catch (interruptedexception e) { e.printstacktrace(); } logger.debug("等待计数器达到标准..."); try { //让线程进入阻塞状态,等待计数达成后释放 cyclicbarrier.await(); logger.debug("计数达成,继续执行..."); } catch (interruptedexception e) { e.printstacktrace(); } catch (brokenbarrierexception e) { e.printstacktrace(); } } }
执行结果:
[a] - 执行操作... [a] - 休眠0秒 [e2] - 执行操作... [e2] - 休眠5秒 [d2] - 执行操作... [d2] - 休眠4秒 [c2] - 执行操作... [c2] - 休眠4秒 [b2] - 执行操作... [b2] - 休眠6秒 [a2] - 执行操作... [a2] - 休眠8秒 [e] - 执行操作... [e] - 休眠5秒 [d] - 执行操作... [d] - 休眠0秒 [c] - 执行操作... [c] - 休眠3秒 [b] - 执行操作... [b] - 休眠7秒 [a] - 等待计数器达到标准... [d] - 等待计数器达到标准... [c] - 等待计数器达到标准... [d2] - 等待计数器达到标准... [c2] - 等待计数器达到标准... [c2] debug concurrent.cyclicbarriertest - ---计数到达后执行的内容---- [c2] - 计数达成,继续执行... [a] - 计数达成,继续执行... [c] - 计数达成,继续执行... [d2] - 计数达成,继续执行... [d] - 计数达成,继续执行... [e2] - 等待计数器达到标准... [e] - 等待计数器达到标准... [b2] - 等待计数器达到标准... [b] - 等待计数器达到标准... [a2] - 等待计数器达到标准... [a2] debug concurrent.cyclicbarriertest - ---计数到达后执行的内容---- [e] - 计数达成,继续执行... [b2] - 计数达成,继续执行... [e2] - 计数达成,继续执行... [b] - 计数达成,继续执行... [a2] - 计数达成,继续执行...
可以想象成以前不正规的长途汽车站的模式:
不正规的长途汽车站会等待座位坐满之后才发车,到达目的地之后继续等待然后循环进行。每个人都是一个thread,上车后触发cyclicbarrier.await();,当坐满时就是达到指定达成数的时候,车辆发车就是达成后统一执行的内容,发车后车上的人们就可以聊天之类的操作了【我们暂且理解为上车后人们就都不能动了o(∩_∩)o~】。
countdownlatch与cyclicbarrier区别:
countdownlatch是一个或多个线程等待计数达成后继续执行,await()调用并没有参与计数。
cyclicbarrier则是n个线程等待彼此执行到零界点之后再继续执行,await()调用的同时参与了计数,并且cyclicbarrier支持条件达成后执行某个动作,而且这个过程是循环性的。
exchanger
exchanger 用于线程间进行数据交换
可以在对中对元素进行配对和交换的线程的同步点。每个线程将条目上的某个方法呈现给 exchange 方法,与伙伴线程进行匹配,并且在返回时接收其伙伴的对象。exchanger 可能被视为 synchronousqueue 的双向形式。 exchanger 可能在应用程序(比如遗传算法和管道设计)中很有用。
用法示例:以下是重点介绍的一个类,该类使用 exchanger 在线程间交换缓冲区,因此,在需要时,填充缓冲区的线程获取一个新腾空的缓冲区,并将填满的缓冲区传递给腾空缓冲区的线程。 测试类:
package concurrent; import concurrent.pojo.exchangerpojo; import concurrent.thread.exchangerthread; import java.util.hashmap; import java.util.concurrent.exchanger; public class exchangertest { public static void main(string[] args) { exchanger<hashmap<string, exchangerpojo>> exchanger = new exchanger<>(); new exchangerthread("a", exchanger).start(); new exchangerthread("b", exchanger).start(); } }
实体类:
package concurrent.pojo; import com.alibaba.fastjson.json; import java.util.date; import java.util.list; public class exchangerpojo { private int intval; private string strval; private list<string> strlist; private date date; public exchangerpojo(int intval, string strval, list<string> strlist, date date) { this.intval = intval; this.strval = strval; this.strlist = strlist; this.date = date; } public int getintval() { return intval; } public void setintval(int intval) { this.intval = intval; } public string getstrval() { return strval; } public void setstrval(string strval) { this.strval = strval; } public list<string> getstrlist() { return strlist; } public void setstrlist(list<string> strlist) { this.strlist = strlist; } public date getdate() { return date; } public void setdate(date date) { this.date = date; } @override public string tostring() { return json.tojsonstring(this); } }
线程类:
package concurrent.thread; import concurrent.pojo.exchangerpojo; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.*; import java.util.concurrent.exchanger; public class exchangerthread extends thread { private exchanger<hashmap<string, exchangerpojo>> exchanger; private static final logger logger = logmanager.getlogger(exchangerthread.class); public exchangerthread(string name, exchanger<hashmap<string, exchangerpojo>> exchanger) { super(name); this.exchanger = exchanger; } @override public void run() { hashmap<string, exchangerpojo> map = new hashmap<>(); logger.debug(getname() + "提供者提供数据..."); random random = new random(); for (int i = 0; i < 3; i++) { int index = random.nextint(10); list<string> list = new arraylist<>(); for (int j = 0; j < index; j++) { list.add("list ---> " + j); } exchangerpojo pojo = new exchangerpojo(index, getname() + "提供的数据", list, new date()); map.put("第" + i + "个数据", pojo); } try { int time = random.nextint(10); logger.debug(getname() + "等待" + time + "秒...."); for (int i = time; i > 0; i--) { sleep(1000); logger.debug(getname() + "---->" + i); } //等待exchange是会进入阻塞状态,可以在一个线程中与另一线程多次交互,此处就不写多次了 hashmap<string, exchangerpojo> getmap = exchanger.exchange(map); time = random.nextint(10); logger.debug(getname() + "接受到数据等待" + time + "秒...."); for (int i = time; i > 0; i--) { sleep(1000); logger.debug(getname() + "---->" + i); } getmap.foreach((x, y) -> { logger.debug(x + " -----> " + y.tostring()); } ); } catch (interruptedexception e) { e.printstacktrace(); } } }
执行结果:
[b] - b提供者提供数据... [a] - a提供者提供数据... [a] - a等待2秒.... [b] - b等待0秒.... [a] - a---->2 [a] - a---->1 [b] - b接受到数据等待1秒.... [a] - a接受到数据等待4秒.... [b] - b---->1 [a] - a---->4 [b] - 第0个数据 -----> {"date":1470652252049,"intval":5,"strlist":["list ---> 0","list ---> 1","list ---> 2","list ---> 3","list ---> 4"],"strval":"a提供的数据"} [b] - 第1个数据 -----> {"date":1470652252049,"intval":1,"strlist":["list ---> 0"],"strval":"a提供的数据"} [b] - 第2个数据 -----> {"date":1470652252049,"intval":4,"strlist":["list ---> 0","list ---> 1","list ---> 2","list ---> 3"],"strval":"a提供的数据"} [a] - a---->3 [a] - a---->2 [a] - a---->1 [a] - 第0个数据 -----> {"date":1470652252057,"intval":1,"strlist":["list ---> 0"],"strval":"b提供的数据"} [a] - 第1个数据 -----> {"date":1470652252057,"intval":6,"strlist":["list ---> 0","list ---> 1","list ---> 2","list ---> 3","list ---> 4","list ---> 5"],"strval":"b提供的数据"} [a] - 第2个数据 -----> {"date":1470652252057,"intval":6,"strlist":["list ---> 0","list ---> 1","list ---> 2","list ---> 3","list ---> 4","list ---> 5"],"strval":"b提供的数据"}
phaser
phaser个人感觉兼具了countdownlatch与cyclicbarrier的功能,并提供了分阶段的能力。
实现分阶段的cyclicbarrier的功能
测试代码:
package concurrent; import concurrent.thread.phaserthread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.concurrent.phaser; public class phasertest { private static final logger logger = logmanager.getlogger(phasertest.class); public static void main(string[] args) { phaser phaser = new phaser() { /**此方法有2个作用: * 1、当每一个阶段执行完毕,此方法会被自动调用,因此,重载此方法写入的代码会在每个阶段执行完毕时执行,相当于cyclicbarrier的barrieraction。 * 2、当此方法返回true时,意味着phaser被终止,因此可以巧妙的设置此方法的返回值来终止所有线程。例如:若此方法返回值为 phase>=3,其含义为当整个线程执行了4个阶段后,程序终止。 * */ @override protected boolean onadvance(int phase, int registeredparties) { logger.debug("阶段--->" + phase); logger.debug("注册的线程数量--->" + registeredparties); return super.onadvance(phase, registeredparties); } } ; for (int i = 3; i > 0; i--) { new phaserthread("第" + i + "个", phaser).start(); } } }
线程代码:
package concurrent.thread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.random; import java.util.concurrent.phaser; public class phaserthread extends thread { private phaser phaser; private static final logger logger = logmanager.getlogger(phaserthread.class); public phaserthread(string name, phaser phaser) { super(name); this.phaser = phaser; //把当前线程注册到phaser this.phaser.register(); logger.debug("name为" + name + "的线程注册了" + this.phaser.getregisteredparties() + "个线程"); } @override public void run() { logger.debug("进入..."); phaser.arrive(); for (int i = 6; i > 0; i--) { int time = new random().nextint(5); try { logger.debug("睡眠" + time + "秒"); sleep(time * 1000); if (i == 1) { logger.debug("未完成的线程数量:" + phaser.getunarrivedparties()); logger.debug("最后一次触发,并注销自身"); phaser.arriveandderegister(); logger.debug("未完成的线程数量:" + phaser.getunarrivedparties()); } else { logger.debug("未完成的线程数量:" + phaser.getunarrivedparties()); logger.debug(i + "--->触发并阻塞..."); phaser.arriveandawaitadvance(); //相当于cyclicbarrier.await(); logger.debug("未完成的线程数量:" + phaser.getunarrivedparties()); } } catch (interruptedexception e) { e.printstacktrace(); } } logger.debug("注销完成之后注册的线程数量--->" + phaser.getregisteredparties()); } }
执行结果:
[main] - name为第3个的线程注册了1个线程 [main] - name为第2个的线程注册了2个线程 [main] - name为第1个的线程注册了3个线程 [第3个] - 进入... [第2个] - 进入... [第3个] - 睡眠2秒 [第2个] - 睡眠1秒 [第1个] - 进入... [第1个] - 阶段--->0 [第1个] - 注册的线程数量--->3 [第1个] - 睡眠4秒 [第2个] - 未完成的线程数量:3 [第2个] - 6--->触发并阻塞... [第3个] - 未完成的线程数量:2 [第3个] - 6--->触发并阻塞... [第1个] - 未完成的线程数量:1 [第1个] - 6--->触发并阻塞... [第1个] - 阶段--->1 [第1个] - 注册的线程数量--->3 [第1个] - 未完成的线程数量:3 [第3个] - 未完成的线程数量:3 [第2个] - 未完成的线程数量:3 [第1个] - 睡眠1秒 [第3个] - 睡眠0秒 [第2个] - 睡眠4秒 [第3个] - 未完成的线程数量:3 [第3个] - 5--->触发并阻塞... [第1个] - 未完成的线程数量:2 [第1个] - 5--->触发并阻塞... [第2个] - 未完成的线程数量:1 [第2个] - 5--->触发并阻塞... [第2个] - 阶段--->2 [第2个] - 注册的线程数量--->3 [第2个] - 未完成的线程数量:3 [第3个] - 未完成的线程数量:3 [第1个] - 未完成的线程数量:3 [第2个] - 睡眠0秒 [第3个] - 睡眠2秒 [第2个] - 未完成的线程数量:3 [第1个] - 睡眠2秒 [第2个] - 4--->触发并阻塞... [第3个] - 未完成的线程数量:2 [第1个] - 未完成的线程数量:2 [第3个] - 4--->触发并阻塞... [第1个] - 4--->触发并阻塞... [第1个] - 阶段--->3 [第1个] - 注册的线程数量--->3 [第1个] - 未完成的线程数量:3 [第3个] - 未完成的线程数量:3 [第2个] - 未完成的线程数量:3 [第1个] - 睡眠2秒 [第3个] - 睡眠1秒 [第2个] - 睡眠4秒 [第3个] - 未完成的线程数量:3 [第3个] - 3--->触发并阻塞... [第1个] - 未完成的线程数量:2 [第1个] - 3--->触发并阻塞... [第2个] - 未完成的线程数量:1 [第2个] - 3--->触发并阻塞... [第2个] - 阶段--->4 [第2个] - 注册的线程数量--->3 [第2个] - 未完成的线程数量:3 [第3个] - 未完成的线程数量:3 [第1个] - 未完成的线程数量:3 [第2个] - 睡眠2秒 [第1个] - 睡眠2秒 [第3个] - 睡眠4秒 [第2个] - 未完成的线程数量:3 [第1个] - 未完成的线程数量:3 [第2个] - 2--->触发并阻塞... [第1个] - 2--->触发并阻塞... [第3个] - 未完成的线程数量:1 [第3个] - 2--->触发并阻塞... [第3个] - 阶段--->5 [第3个] - 注册的线程数量--->3 [第3个] - 未完成的线程数量:3 [第1个] - 未完成的线程数量:3 [第2个] - 未完成的线程数量:3 [第3个] - 睡眠2秒 [第1个] - 睡眠3秒 [第2个] - 睡眠0秒 [第2个] - 未完成的线程数量:3 [第2个] - 最后一次触发,并注销自身 [第2个] - 未完成的线程数量:2 [第2个] - 注销完成之后注册的线程数量--->2 [第3个] - 未完成的线程数量:2 [第3个] - 最后一次触发,并注销自身 [第3个] - 未完成的线程数量:1 [第3个] - 注销完成之后注册的线程数量--->1 [第1个] - 未完成的线程数量:1 [第1个] - 最后一次触发,并注销自身 [第1个] - 阶段--->6 [第1个] - 注册的线程数量--->0 [第1个] - 未完成的线程数量:0 [第1个] - 注销完成之后注册的线程数量--->0
上面代码中,当所有线程进行到arriveandawaitadvance()时会触发计数并且将线程阻塞,等计数数量等于注册线程数量【即所有线程都执行到了约定的地方时,会放行,是所有线程得以继续执行,并触发onaction事件】。我们可以在onaction中根据不同阶段执行不同内容的操作。
实现分阶段的countdownlatch的功能
只需将上面的测试类更改如下:
package concurrent; import concurrent.thread.phaserthread; import org.apache.logging.log4j.logmanager; import org.apache.logging.log4j.logger; import java.util.concurrent.phaser; import static jodd.util.threadutil.sleep; public class phasertest { private static final logger logger = logmanager.getlogger(phasertest.class); public static void main(string[] args) { //这里其实相当于已经注册了3个线程,但是并没有实际的线程 int coutnum=3; phaser phaser = new phaser(coutnum) { /**此方法有2个作用: * 1、当每一个阶段执行完毕,此方法会被自动调用,因此,重载此方法写入的代码会在每个阶段执行完毕时执行,相当于cyclicbarrier的barrieraction。 * 2、当此方法返回true时,意味着phaser被终止,因此可以巧妙的设置此方法的返回值来终止所有线程。例如:若此方法返回值为 phase>=3,其含义为当整个线程执行了4个阶段后,程序终止。 * */ @override protected boolean onadvance(int phase, int registeredparties) { logger.debug("阶段--->" + phase); logger.debug("注册的线程数量--->" + registeredparties); return registeredparties==coutnum; //当后只剩下coutnum个线程时说明所有真实的注册的线程已经运行完成,测试可以终止phaser } } ; for (int i = 3; i > 0; i--) { new phaserthread("第" + i + "个", phaser).start(); } //当phaser未终止时循环注册这块儿可以使用实际的业务处理 while (!phaser.isterminated()) { sleep(1000); logger.debug("触发一次"); phaser.arrive(); //相当于countdownlatch.countdown(); } } }
总结
以上就是本文关于java多线程同步器代码详解的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:
如有不足之处,欢迎留言指出。