JavaSE小笔记--29(多线程3两个线程间的通信)

本文通过一个具体示例介绍如何在Java中实现两个线程之间的通信。通过使用synchronized关键字和wait/notify方法,使线程能够按预期顺序交替执行,从而实现线程间的数据同步。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

两个线程间的通信

 

什么时候需要通信?---多线程并发执行时,在默认情况下CPU时随机切换线程的,如果我们希望他们有规律的执行,就可以使用通信

如何实现通信?---如果希望线程等待--wait();如果希望唤醒等待的线程---notify()

------------------这两个方法必须在同步代码中执行,并且使用同步锁对象来调用

 

/*
 * 交替打印2行字符串
 */
public class Demo_07 {

	public static void main(String[] args) {
		final Printer p = new Printer();
		
		new Thread() {
			public void run(){
				while(true) {
					try {
						p.print1();
					} catch (InterruptedException e) {
						
						e.printStackTrace();
					}
				}
			}
		}.start();
		
		new Thread() {
			public void run(){
				while(true) {
					try {
						p.print2();
					} catch (InterruptedException e) {
						
						e.printStackTrace();
					}
				}
			}
		}.start();

	}

}

class Printer{
	private int flag = 1;
	public void print1() throws InterruptedException {
		synchronized (this) {
			if(flag!=1) {
				this.wait();			//当前线程等待
			}
			System.out.print("学");
			System.out.print("习");
			System.out.println();
			flag = 2;
			this.notify();				//随机唤醒单个等待的线程,注意时随机
		}
	}
	public void print2() throws InterruptedException {
		synchronized (this) {
			if(flag!=2) {
				this.wait();
			}
			System.out.print("J");
			System.out.print("A");
			System.out.print("V");
			System.out.print("A");
			System.out.println();
			flag = 1;
			this.notify();
		}
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值