27.Java 线程间通信(synchronized 实现线程间通信、Lock 实现线程间通信)

一、线程间通信

1、概述
  • 线程间通信的模型有两种:共享内存和消息传递
2、多线程编程步骤(中)
  1. 创建资源类,在资源类中创建属性和操作方法

  2. 在资源类操作方法进行判断、操作、通知

  3. 创建多个线程,调用资源类中的操作方法


二、synchronized 实现线程间通信

1、需求
  • 通过使用两个线程对值(0)进行操作,一个线程加 1,一个线程减 1,交替实现多次
2、具体实现
(1)资源类
  • Share 类
package com.my.communicate;public class Share {// 初始值private int number;// 加 1 的方法public synchronized void increase() throws InterruptedException {// number 为 0 则等待if (number != 0) {this.wait();}number++;System.out.println(Thread.currentThread().getName() + "  " + number);// 通知其他线程this.notifyAll();}// 减 1 的方法public synchronized void decrease() throws InterruptedException {// number 为 0 则等待if (number != 1) {this.wait();}number--;System.out.println(Thread.currentThread().getName() + "  " + number);// 通知其他线程this.notifyAll();}
}
(2)多线程测试
  • ShareTest 类
package com.my.communicate;public class ShareTest {public static void main(String[] args) {Share share = new Share();Thread thread1 = new Thread(() -> {for (int i = 0; i < 10; i++) {try {share.increase();} catch (InterruptedException e) {e.printStackTrace();}}}, "AA");Thread thread2 = new Thread(() -> {for (int i = 0; i < 10; i++) {try {share.decrease();} catch (InterruptedException e) {e.printStackTrace();}}}, "BB");thread1.start();thread2.start();}
}
3、虚假唤醒
  • 在当前 synchronized 实现线程间通信案例中再增加两个线程,执行结果会不符合预期,根本原因是虚假唤醒问题

  • 如果一个线程执行完毕后,通知其他线程,该线程又进入等待睡眠,被唤醒后,if 语句不会进行判断

  • 需要将 if 语句换成 while 语句,因为在哪里等待睡眠就会在哪里被唤醒,需要使用 while 语句再次进行判断

4、改进
(1)资源类
  • ShareImprove 类
package com.my.communicate;public class ShareImprove {// 初始值private int number;// 加 1 的方法public synchronized void increase() throws InterruptedException {// number 为 0 则等待while (number != 0) {this.wait();}number++;System.out.println(Thread.currentThread().getName() + "  " + number);// 通知其他线程this.notifyAll();}// 减 1 的方法public synchronized void decrease() throws InterruptedException {// number 为 0 则等待while (number != 1) {this.wait();}number--;System.out.println(Thread.currentThread().getName() + "  " + number);// 通知其他线程this.notifyAll();}
}
(2)多线程测试
  • ShareTestImprove 类
package com.my.communicate;public class ShareTestImprove {public static void main(String[] args) {Share share = new Share();Thread thread1 = new Thread(() -> {for (int i = 0; i < 10; i++) {try {share.increase();} catch (InterruptedException e) {e.printStackTrace();}}}, "AA");Thread thread2 = new Thread(() -> {for (int i = 0; i < 10; i++) {try {share.decrease();} catch (InterruptedException e) {e.printStackTrace();}}}, "BB");Thread thread3 = new Thread(() -> {for (int i = 0; i < 10; i++) {try {share.increase();} catch (InterruptedException e) {e.printStackTrace();}}}, "CC");Thread thread4 = new Thread(() -> {for (int i = 0; i < 10; i++) {try {share.decrease();} catch (InterruptedException e) {e.printStackTrace();}}}, "DD");thread1.start();thread2.start();thread3.start();thread4.start();}
}

三、Lock 实现线程间通信

1、需求
  • 通过使用两个线程对值(0)进行操作,一个线程加 1,一个线程减 1,交替实现多次
2、具体实现
  • LShare 类
(1)资源类
package com.my.communicate;import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;public class LShare {// 初始值private int number;// 创建可重入锁private Lock lock;// 创建 Condition 对象private Condition condition;public LShare() {number = 0;lock = new ReentrantLock();condition = lock.newCondition();}// 加 1 的方法public void increase() {lock.lock();try {while (number != 0) {// 等待condition.await();}number++;System.out.println(Thread.currentThread().getName() + "  " + number);// 通知其他线程condition.signalAll();} catch (InterruptedException e) {e.printStackTrace();} finally {lock.unlock();}}// 减 1 的方法public void decrease() {lock.lock();try {while (number != 1) {// 等待condition.await();}number--;System.out.println(Thread.currentThread().getName() + "  " + number);// 通知其他线程condition.signalAll();} catch (InterruptedException e) {e.printStackTrace();} finally {lock.unlock();}}
}
(2)多线程测试
  • LShareTest 类
package com.my.communicate;public class LShareTest {public static void main(String[] args) {LShare lShare = new LShare();Thread thread1 = new Thread(() -> {for (int i = 0; i < 10; i++) {lShare.increase();}}, "AA");Thread thread2 = new Thread(() -> {for (int i = 0; i < 10; i++) {lShare.decrease();}}, "BB");Thread thread3 = new Thread(() -> {for (int i = 0; i < 10; i++) {lShare.increase();}}, "CC");Thread thread4 = new Thread(() -> {for (int i = 0; i < 10; i++) {lShare.decrease();}}, "DD");thread1.start();thread2.start();thread3.start();thread4.start();}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/66263.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

多模态论文笔记——U-ViT

大家好&#xff0c;这里是好评笔记&#xff0c;公主号&#xff1a;Goodnote&#xff0c;专栏文章私信限时Free。本文详细介绍U-ViT的模型架构和实验细节&#xff0c;虽然没有后续的DiT在AIGC领域火爆&#xff0c;但为后来的研究奠定了基础&#xff0c;但其开创性的探索值得学习…

SpringBoot的6种API请求参数读取方式

RequestParam 用来加载URL中?之后的参数 比如: 这个请求/user?namedidspace 就可以如下面这样&#xff0c;使用RequestParam 来加载URL 中的name 参数 GetMapping("/user") ResponseBody() public User findUserByName(RequestParam("name") String n…

node.js内置模块之---http 和 https 模块

http 和 https 模块的作用 在 Node.js 中&#xff0c;http 和 https 模块用于创建和处理 HTTP 和 HTTPS 请求/响应 http模块 http 模块提供了用于实现 HTTP 协议的功能。它可以用来创建 HTTP 服务器&#xff0c;处理 HTTP 请求&#xff0c;发送 HTTP 响应&#xff0c;同时也可以…

Image和Video在同一个Dataloader中交错加载联合训练

单卡实现 本文主要从两个方面进行展开&#xff1a; &#xff11;&#xff0e;将两个或多个dataset组合成pytorch中的一个ConcatDataset&#xff0e;这个dataset将会作为pytorch中Dataloader的输入。 &#xff12;&#xff0e;覆盖重写RandomSampler修改batch产生过程&#xff…

rpm包详解

一、rpm包 1、过滤系统rpm包&#xff0c;查询已安装的包 rpm -qa | grep htop2、rpm包导出 yumdownnloader htop-2.2.0.33、查看rpm包信息 rpm -qi 包名二、rpm包列表 1、查看软件包列表 yum list available *docker*2、查看软件包依赖 # rpl仓库 yum install epel-rel…

【Adobe Acrobat PDF】Acrobat failed to connect to a DDE server.是怎么回事?

【Adobe Acrobat PDF】Acrobat failed to connect to a DDE server.是怎么回事&#xff1f; 【Adobe Acrobat PDF】Acrobat failed to connect to a DDE server.是怎么回事&#xff1f; 文章目录 【Adobe Acrobat PDF】Acrobat failed to connect to a DDE server.是怎么回事&…

Rabbitmq 业务异常与未手动确认场景及解决方案

消费端消费异常&#xff0c;业务异常 与 未手动确认是不是一个场景&#xff0c;因为执行完业务逻辑&#xff0c;再确认。解决方案就一个&#xff0c;就是重试一定次数&#xff0c;然后加入死信队列。还有就是消费重新放入队列&#xff0c;然后重新投递给其他消费者&#xff0c;…

每日一题 380. O(1) 时间插入、删除和获取随机元素

380. O(1) 时间插入、删除和获取随机元素 最复杂的部分最简单来思考&#xff0c;其他的部分来弥补 class RandomizedSet { public:vector<int> nums;unordered_map<int,int> mp;RandomizedSet() {}bool insert(int val) {if(mp.count(val)){return false;}else{m…

MongoDB-文章目录

MongoDB学习总结1&#xff08;服务安装&#xff09; MongoDB学习总结2&#xff08;常用命令&#xff09; MongoDB学习总结3&#xff08;js文件中写命令&#xff09; MongoDB学习总结4&#xff08;数据插入、修改&#xff09; MongoDB学习总结5&#xff08;数据查询1&#x…

HBase Cassandra的部署和操作

目录 一&#xff0e;数据库的部署与配置 二&#xff0e;使用命令访问数据库 三&#xff0e;数据库的设计 四&#xff0e;编程实现数据库的访问 一&#xff0e;数据库的部署与配置 1.在单个节点上对进行数据库的单机部署 &#xff08;1&#xff09;下载apache-cassandra-4.1.7-…

springboot实战纪实-课程介绍

教程介绍 Spring Boot是由Pivotal团队提供的一套开源框架&#xff0c;可以简化spring应用的创建及部署。它提供了丰富的Spring模块化支持&#xff0c;可以帮助开发者更轻松快捷地构建出企业级应用。 Spring Boot通过自动配置功能&#xff0c;降低了复杂性&#xff0c;同时支持…

BBP飞控板中的坐标系变换

一般飞控板中至少存在以下坐标系&#xff1a; 陀螺Gyro坐标系加速度计Acc坐标系磁强计Mag坐标系飞控板坐标系 在BBP飞控板采用的IMU为同时包含了陀螺&#xff08;Gyro&#xff09;及加速度计&#xff08;Acc&#xff09;的6轴传感器&#xff0c;故Gyro及Acc为同一坐标系。同时…

数据表中的索引详解

文章目录 一、索引概述二、普通索引三、唯一索引四、全文索引五、多列索引六、索引的设计原则七、隐藏和删除索引 一、索引概述 日常生活中&#xff0c;我们经常会在电话号码簿中查阅“某人”的电话号码&#xff0c;按姓查询或者按字母排序查询&#xff1b;在字典中查阅“某个…

大模型系列17-RAGFlow搭建本地知识库

大模型系列17-RAGFlow搭建本地知识库 安装ollama安装open-wehui安装并运行ragflowRAG&#xff08;检索、增强、生成&#xff09;RAG是什么RAG三过程RAG问答系统构建步骤向量库构建检索模块生成模块 RAG解决LLM的痛点 使用ragflow访问ragflow配置ollama模型添加Embedding模型添加…

C++如何遍历数组vector

在C中&#xff0c;vector是一个可变数组。那么怎么遍历它呢&#xff1f;我们以for循环为例&#xff08;while循环&#xff0c;大家自己脑补&#xff09;。 方法一&#xff1a; 基于范围的for循环&#xff0c;这是C11新引入的。 std::vector<int> v {1, 2, 3, 4, 5, 6…

华为交换机---自动备份配置到指定ftp/sftp服务器

华为交换机—自动备份配置到指定ftp服务器 需求 交换机配置修改后及时备份相关配置,每次配置变化后需要在1分钟后自动进行保存,并且将配置上传至FTP服务器;每隔30分钟,交换机自动把配置上传到FTP服务器。 1、定时保存新配置的时间间隔为*分钟(1天=1440),默认为30分钟(…

深入解析-正则表达式

学习正则&#xff0c;我们到底要学什么&#xff1f; 正则表达式&#xff08;RegEx&#xff09;是一种强大的文本匹配工具&#xff0c;广泛应用于数据验证、文本搜索、替换和解析等领域。学习正则表达式&#xff0c;我们不仅要掌握其语法规则&#xff0c;还需要学会如何高效地利…

R shiny app | 网页应用 空格分隔的文本文件在线转csv

shiny 能快速把R程序以web app的形式提供出来&#xff0c;方便使用&#xff0c;降低技术使用门槛。 本文提供的示例&#xff1a;把空格分隔的txt文件转为逗号分隔的csv文件。 前置依赖&#xff1a;需要有R环境(v4.2.0)&#xff0c;安装shiny包(v1.9.1)。括号内是我使用的版本…

SocraticLM: Exploring Socratic Personalized Teaching with Large Language Models

题目 苏格拉底式教学:用大型语言模型探索苏格拉底式个性化教学 论文地址&#xff1a;https://openreview.net/pdf?idqkoZgJhxsA 项目地址&#xff1a;https://github.com/Ljyustc/SocraticLM 摘要 大型语言模型(LLM)被认为是推进智能教育的一项关键技术&#xff0c;因为它们展…

第一节:电路连接【51单片机+A4988+步进电机教程】

摘要&#xff1a;本节介绍如何搭建一个51单片机A4988步进电机控制电路&#xff0c;所用材料均为常见的模块&#xff0c;简单高效的方式搭建起硬件环境 一、硬件清单 ①51单片机最小控制模块 ②开关电源 ③A4988模块转接座 ④二相四线步进电机 ⑤电线若干 二、接线 三、A49…