热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

理解java并发工具Phaser

java为我们提供了很多并发工具,比如Semaphore、CountDownLatch、CyclicBarrier还有我们这里要讲到的phaser。当某些任务是分成

java为我们提供了很多并发工具,比如Semaphore、CountDownLatch、CyclicBarrier还有我们这里要讲到的phaser。

当某些任务是分成多个步骤来执行时,并且同一个步骤之间可以并发,不同步骤之间不能并发的时候, 此机制是非常有用的。Phaser类提供的机制是在每个步骤的结尾同步线程,所以除非全部线程完成第一个步骤,否则线程不能开始进行第二步。

使用phaser你首先需要指示参与同步的线程的个数,我们可以使用 phaser.register()或者new Phaser(5),下面的示意图给出了形象的解释:

我们假设每个方框代表需要同步的线程,这里直接使用new Phaser(4)说明有4个线程需要同步:
在这里插入图片描述
如果在同一个phaser对象上使用phaser.register(),每使用一次就增加一个需要同步的线程。也就是增加一个方框的数量。

如果现在有线程调用了:phaser.arriveAndAwaitAdvance()那就说明有一个线程到达了同步点,它将阻塞在调用这个函数的位置,直到所有需要同步的线程都到达,将对所有线程统一放行,进行第二个阶段任务的执行。
在这里插入图片描述
在第二阶段的时候,又会有这四个方框被创建出来,等待线程的到达,然后又统一放行,最后直到方框数量为0,方框数量是如何降到0的,就需要了解如果减少方框的数量了。

我们在执行期间,可以去增加或者减少这些方框的数量。增加的话依旧依旧可以使用phaser.register()如果需要减少方框的数量可以调用phaser.arriveAndDeregister(),也就是通知Phaser对象,当前线程已经结束这个阶段,并且将不再参与接下来的阶段操作。这就相当于说明这个阶段到达了方框,并且下一个阶段减少一个方框。一般一个线程的所有阶段任务都结束了,需要调用phaser.arriveAndDeregister();或者一个线程在执行的时候我们希望停止这个线程的执行了,那么可以调用phaser.arriveAndDeregister();通知phaser后面阶段不用同步这个线程了。

Phaser还提供了一个方法protected boolean onAdvance(int phase, int registeredParties),这个方法每当统一放行的时候会自动执行一次,它接收2个参数:当前阶段数(从0开始)和注册的参与者数;

在这里有一个例子,它实现一个模拟测验,所有学生要完成他们的练习。全部的学生都必须完成同一个练习才能继续下一个练习。作为一个练习,你可以将例子做个扩展,比如如果解题时间(代码中表现为线程睡眠时间)大于8s,就说明学生做不出来这一题,则退出测验。

下面是例子的输出,一个线程代表一个学生:

Thread-4: Is going to do the first exercise. Mon Jul 22 13:40:50 CST 2019
Thread-4: Has done the first exercise. Mon Jul 22 13:40:50 CST 2019
Thread-3: Is going to do the first exercise. Mon Jul 22 13:40:50 CST 2019
Thread-0: Is going to do the first exercise. Mon Jul 22 13:40:50 CST 2019
Thread-2: Has done the first exercise. Mon Jul 22 13:40:52 CST 2019
Thread-0: Has done the first exercise. Mon Jul 22 13:40:55 CST 2019
Thread-1: Has done the first exercise. Mon Jul 22 13:40:56 CST 2019
Thread-3: Has done the first exercise. Mon Jul 22 13:40:57 CST 2019
Phaser: All the students has finished the first exercise.
Phaser: It's turn for the second one.
Thread-1: Is going to do the second exercise. Mon Jul 22 13:40:57 CST 2019
Thread-0: Is going to do the second exercise. Mon Jul 22 13:40:57 CST 2019
Thread-2: Is going to do the second exercise. Mon Jul 22 13:40:57 CST 2019
Thread-2: Has done the second exercise. Mon Jul 22 13:40:57 CST 2019
Thread-4: Is going to do the second exercise. Mon Jul 22 13:40:57 CST 2019
Thread-3: Is going to do the second exercise. Mon Jul 22 13:40:57 CST 2019
Thread-0: Has done the second exercise. Mon Jul 22 13:40:59 CST 2019
Thread-4: Has done the second exercise. Mon Jul 22 13:40:59 CST 2019
Thread-3: Has done the second exercise. Mon Jul 22 13:41:03 CST 2019
Thread-1: Has done the second exercise. Mon Jul 22 13:41:04 CST 2019
Phaser: All the students has finished the second exercise.
Phaser: It's turn for the third one.
Thread-3: Is going to do the third exercise. Mon Jul 22 13:41:04 CST 2019
Thread-3: Has finished the exam. Mon Jul 22 13:41:04 CST 2019
Thread-4: Is going to do the third exercise. Mon Jul 22 13:41:04 CST 2019
Thread-0: Is going to do the third exercise. Mon Jul 22 13:41:04 CST 2019
Thread-2: Is going to do the third exercise. Mon Jul 22 13:41:04 CST 2019
Thread-1: Is going to do the third exercise. Mon Jul 22 13:41:04 CST 2019
Thread-0: Has finished the exam. Mon Jul 22 13:41:06 CST 2019
Thread-4: Has finished the exam. Mon Jul 22 13:41:09 CST 2019
Thread-2: Has finished the exam. Mon Jul 22 13:41:09 CST 2019
Thread-1: Has finished the exam. Mon Jul 22 13:41:09 CST 2019
Phaser: All the students has finished the exam.
Phaser: Thank you for your time.
Main: The phaser has finished: true.

下面是添加了模拟学生不会做的情况的输出:

Thread-1: Has arrived to do the exam. Mon Jul 22 14:00:09 CST 2019
Thread-4: Has arrived to do the exam. Mon Jul 22 14:00:09 CST 2019
Thread-3: Has arrived to do the exam. Mon Jul 22 14:00:09 CST 2019
Thread-0: Has arrived to do the exam. Mon Jul 22 14:00:09 CST 2019
Thread-2: Has arrived to do the exam. Mon Jul 22 14:00:09 CST 2019
Phaser: The exam are going to start. The students are ready.
Phaser: We have 5 students.
Thread-2: Is going to do the first exercise. Mon Jul 22 14:00:09 CST 2019
Thread-2: Exit the exam
Thread-4: Is going to do the first exercise. Mon Jul 22 14:00:09 CST 2019
Thread-4: Exit the exam
Thread-0: Is going to do the first exercise. Mon Jul 22 14:00:09 CST 2019
Thread-0: Has done the first exercise. Mon Jul 22 14:00:09 CST 2019
Thread-3: Is going to do the first exercise. Mon Jul 22 14:00:09 CST 2019
Thread-1: Is going to do the first exercise. Mon Jul 22 14:00:09 CST 2019
Thread-1: Exit the exam
Thread-3: Has done the first exercise. Mon Jul 22 14:00:14 CST 2019
Phaser: All the students has finished the first exercise.
Phaser: It's turn for the second one.
Thread-0: Is going to do the second exercise. Mon Jul 22 14:00:14 CST 2019
Thread-0: Exit the exam
Thread-3: Is going to do the second exercise. Mon Jul 22 14:00:14 CST 2019
Thread-3: Has done the second exercise. Mon Jul 22 14:00:19 CST 2019
Phaser: All the students has finished the second exercise.
Phaser: It's turn for the third one.
Thread-3: Is going to do the third exercise. Mon Jul 22 14:00:19 CST 2019
Thread-3: Exit the exam
Phaser: All the students has finished the exam.
Phaser: Thank you for your time.
Main: The phaser has finished: true.

推荐阅读
  • 深入解析JVM垃圾收集器
    本文基于《深入理解Java虚拟机:JVM高级特性与最佳实践》第二版,详细探讨了JVM中不同类型的垃圾收集器及其工作原理。通过介绍各种垃圾收集器的特性和应用场景,帮助读者更好地理解和优化JVM内存管理。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 本文介绍了Java并发库中的阻塞队列(BlockingQueue)及其典型应用场景。通过具体实例,展示了如何利用LinkedBlockingQueue实现线程间高效、安全的数据传递,并结合线程池和原子类优化性能。 ... [详细]
  • 本文详细介绍了 Dockerfile 的编写方法及其在网络配置中的应用,涵盖基础指令、镜像构建与发布流程,并深入探讨了 Docker 的默认网络、容器互联及自定义网络的实现。 ... [详细]
  • 本文详细介绍了Java编程语言中的核心概念和常见面试问题,包括集合类、数据结构、线程处理、Java虚拟机(JVM)、HTTP协议以及Git操作等方面的内容。通过深入分析每个主题,帮助读者更好地理解Java的关键特性和最佳实践。 ... [详细]
  • DNN Community 和 Professional 版本的主要差异
    本文详细解析了 DotNetNuke (DNN) 的两种主要版本:Community 和 Professional。通过对比两者的功能和附加组件,帮助用户选择最适合其需求的版本。 ... [详细]
  • 本题探讨了一种字符串变换方法,旨在判断两个给定的字符串是否可以通过特定的字母替换和位置交换操作相互转换。核心在于找到这些变换中的不变量,从而确定转换的可能性。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • 本文详细探讨了Java中的24种设计模式及其应用,并介绍了七大面向对象设计原则。通过创建型、结构型和行为型模式的分类,帮助开发者更好地理解和应用这些模式,提升代码质量和可维护性。 ... [详细]
  • 1.如何在运行状态查看源代码?查看函数的源代码,我们通常会使用IDE来完成。比如在PyCharm中,你可以Ctrl+鼠标点击进入函数的源代码。那如果没有IDE呢?当我们想使用一个函 ... [详细]
  • 数据管理权威指南:《DAMA-DMBOK2 数据管理知识体系》
    本书提供了全面的数据管理职能、术语和最佳实践方法的标准行业解释,构建了数据管理的总体框架,为数据管理的发展奠定了坚实的理论基础。适合各类数据管理专业人士和相关领域的从业人员。 ... [详细]
  • 深入理解Java中的volatile、内存屏障与CPU指令
    本文详细探讨了Java中volatile关键字的作用机制,以及其与内存屏障和CPU指令之间的关系。通过具体示例和专业解析,帮助读者更好地理解多线程编程中的同步问题。 ... [详细]
  • 前言--页数多了以后需要指定到某一页(只做了功能,样式没有细调)html ... [详细]
  • 本文深入探讨了Linux系统中网卡绑定(bonding)的七种工作模式。网卡绑定技术通过将多个物理网卡组合成一个逻辑网卡,实现网络冗余、带宽聚合和负载均衡,在生产环境中广泛应用。文章详细介绍了每种模式的特点、适用场景及配置方法。 ... [详细]
author-avatar
祖巧爽_940
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有