博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多线程之间通讯(synchronized,wait,notify)
阅读量:6080 次
发布时间:2019-06-20

本文共 1507 字,大约阅读时间需要 5 分钟。

hot3.png

需求:第一个线程写入(input)用户,另一个线程取读取(out)用户.实现读一个,写一个操作。

用synchronized实现线程通讯

class Res {	public String name;	public String sex;	// flag false out线程未读取值	public boolean flag = false;}class InpThread extends Thread {	public Res res;	public InpThread(Res res) {		this.res = res;	}	@Override	public void run() {		int count = 0;		while (true) {			synchronized (res) {				if (res.flag) {					// 当前线程等待。wait();类似于 sleep 可以让当前线程,从运行状态变为休眠状态 wait					// 使用在多线程之间同步 和synchronized 一起使用					// wait可以释放锁 ,sleep 不能释放锁。					try {						res.wait();					} catch (Exception e) {						// TODO: handle exception					}				}				if (count == 0) {					res.name = "LLL丶Blog";					res.sex = "男";				} else {					res.name = "小红";					res.sex = "女";				}				// 实现奇数和偶数				count = (count + 1) % 2;				res.flag = true;				// 和wait 一起使用 唤醒拧一个线程  唤醒从阻塞状态变为运行状态				res.notify();			}		}	}}class OutThread extends Thread {	public Res res;	public OutThread(Res res) {		this.res = res;	}	@Override	public void run() {		while (true) {			synchronized (res) {				if (!res.flag) {				try {					res.wait();				} catch (Exception e) {					// TODO: handle exception				}				}				System.out.println(res.name + "---" + res.sex);				res.flag = false;				res.notify();			}		}	}}public class ThreadDemo01 {	public static void main(String[] args) {		Res res = new Res();		InpThread inpThread = new InpThread(res);		OutThread outThread = new OutThread(res);		inpThread.start();		outThread.start();	}}

这样就实现了一个一个的打印

转载于:https://my.oschina.net/liaoxiang521/blog/1556285

你可能感兴趣的文章
solr 空值查询和不包含子字段的数据统计
查看>>
XPE中常用的网络功能组件及其描述
查看>>
3D打印开放工具链-开源而且免费
查看>>
CCNA学习总结—RIP协议—RIP防环机制及其他
查看>>
为 VMware 虚拟软件手动安装 VMware Tools
查看>>
MySQL Explain详解
查看>>
MySQL的几个概念:主键,外键,索引,唯一索引
查看>>
我的友情链接
查看>>
Python_类和实例属性的增删改查操作
查看>>
apache模块mod_rpaf ,让nginx后端的apache获取访客IP
查看>>
IBM服务器RAID5
查看>>
李新海:尺有所长,寸有所短,你找到自己的优势了吗?
查看>>
[LeetCode]237. Delete Node in a Linked List
查看>>
本地通过隧道经跳转机访问内网数据库服务器(Xshell、Navicat、Mysql)
查看>>
PPP PAP 认证
查看>>
今日小结
查看>>
RAID学习笔记
查看>>
TCP/IP协议
查看>>
全球数亿台计算机因仍在使用过时软件和系统面临被***风险
查看>>
php+mysql实现英汉查询词典的功能
查看>>