java线程同步经典——生产者消费者

/*
 * 生产者消费者问题,生产完之后要wait
 * 消费完之后要wait,没消费或生产一个就notify别的线程
 * Object 的wait方法,指的是当前的正在访问本对象的线程wait,
 * wait方法只有锁定了线程才有资格wait,wait之后不再拥有锁,醒过来再去找锁
 * notify叫醒一个当前对象上正在wait的线程
 * 在双核笔记本上看的效果比较显著,,不用再添加sleep语句
 */
public class TestProducerConsumer {

	public static void main(String[] args) {
		SyncStack ss = new SyncStack();
		Producer pd = new Producer(ss);
		Consumer cs = new Consumer(ss);
		Thread t1 = new Thread(pd);
		Thread t2 = new Thread(cs);
		t1.start();
		t2.start();
	}

}

class WoTou {
	int id;

	WoTou(int id) {
		this.id = id;
	}

	@Override
	public String toString() {
		return "WoTou" + id;
	}

}

class SyncStack {
	int index = 0;
	WoTou[] WTArr = new WoTou[6];

	public synchronized void push(WoTou wt) {
		while(index == WTArr.length) {
			try {
				this.wait();
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
		this.notify();
		WTArr[index] = wt;
		index++;
	}

	public synchronized WoTou pop() {
		while(index == 0) {
			try {
				this.wait();
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
		this.notify();
		index--;
		return WTArr[index];
	}
}

class Producer implements Runnable {
	SyncStack ss = null;

	Producer(SyncStack ss) {
		this.ss = ss;
	}

	@Override
	public void run() {
		for (int i = 0; i < 20; i++) {
			WoTou wt = new WoTou(i);
			ss.push(wt);
System.out.println("生产了"  + wt);
			//sleep,给消费者时间消费
		}
	}

}

class Consumer implements Runnable {

	SyncStack ss = null;

	Consumer(SyncStack ss) {
		this.ss = ss;
	}

	@Override
	public void run() {
		for (int i = 0; i < 20; i++) {
			WoTou wt = ss.pop();
System.out.println("消费了"  + wt);
			//sleep,给生产者时间生产
		}
	}
	
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值