java:多线程(二个线程之间的通信)

1.什么时候需要通信
    * 多个线程并发执行时, 在默认情况下CPU是随机切换线程的
    * 如果我们希望他们有规律的执行, 就可以使用通信, 例如每个线程执行一次打印
* 2.怎么通信
    * 如果希望线程等待, 就调用wait()
    * 如果希望唤醒等待的线程, 就调用notify();
    * 这两个方法必须在同步代码中执行, 并且使用同步锁对象来调用 

public class Demo1_Notify {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Printer2 p=new Printer2();
		new Thread() {
			public void run() {
				while(true) {
					try {
						p.print1();
					} catch (InterruptedException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}
				}
			}
		}.start();
		
		
		new Thread() {
			public void run() {
				while(true) {
					try {
						p.print2();
					} catch (InterruptedException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}
				}
			}
		}.start();
	}

}


//等待唤醒机制
class Printer2{
	private int flag=1;
	public  void print1() throws InterruptedException {
		synchronized(this) {
			if(flag!=1) {
				this.wait();
			}
			System.out.println("同步");
			System.out.println("代码块");
			System.out.println("1");
			flag=2;
			this.notify();
		}
	}
		
 
	
	public  void print2() throws InterruptedException {
		synchronized(this) {//对象本身
			if(flag!=2) {
				this.wait();//当前线程等待
			}
			System.out.println("同步2");
			System.out.println("代码2");
			System.out.println("2");
			flag=1;
			this.notify();//随机唤醒单个等待的线程
		}
		}
}

输出结果:--二个线程之间轮回输出

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值