JAVA模拟 生产者-消费者

package thread.producerconsumer;

public class Producer implements Runnable {

	private String producerName = null;

	private StoreHouse storeHouse = null;

	public Producer(String producerName, StoreHouse storeHouse) {
		this.producerName = producerName;
		this.storeHouse = storeHouse;
	}

	public void setProducerName(String producerName) {
		this.producerName = producerName;
	}

	public String getProducerName() {
		return producerName;
	}
	
	public void produceProduct() {
		int i = 0;
		while (true) {
			i++;
			Product pro = new Product(i);
			storeHouse.push(pro);
			System.out.println(getProducerName() + " 生产了 " + pro);
			try {
				Thread.sleep(2000);
			} catch (InterruptedException e) {
				return;
			}
		}
	}

	public void run() {
		produceProduct();
	}

}
以上这个类为生产者
package thread.producerconsumer;

public class Consumer implements Runnable {
	
	private String consumerName = null;
	
	private StoreHouse storeHouse = null;

	public Consumer(String consumerName, StoreHouse storeHouse) {
		this.consumerName = consumerName;
		this.storeHouse = storeHouse;
	}
	
	public void setConsumerName(String consumerName) {
		this.consumerName = consumerName;
	}
	
	public String getConsumerName() {
		return consumerName;
	}
	
	public void consumerProduct() {
		while (true) {
			System.out.println(getConsumerName() + " 消费了 " + storeHouse.pop());
			try {
				Thread.sleep(5000);
			} catch (InterruptedException e) {
				return;
			}
		}
	}

	public void run() {
		consumerProduct();
	}

}
以上为消费者
package thread.producerconsumer;

public class Product {

	private int productId = 0;
	
	public Product(int productId) {
		this.productId = productId;
	}

	public int getProductId() {
		return productId;
	}

	public String toString() {
		return Integer.toString(productId);
	}
}
以上为产品类,每个产品具有一个productId 
package thread.producerconsumer;

public class StoreHouse {

	private int base = 0;

	private int top = 0;

	private Product[] products = new Product[10];

	public synchronized void push(Product product) {
		while (top == products.length) {
			notify();
			try {
				System.out.println("仓库已满,正等待消费...");
				wait();
			} catch (InterruptedException e) {
				System.out.println("stop push product because other reasons");
//				必须用while,因为当线程在wait的时候被打断,那么程序会跳出if而去执行下一条语句
			}
		}
		products[top] = product;
		top++;
	}

	public synchronized Product pop() {
		Product pro = null;
		while (top == base) {
			notify();
			try {
				System.out.println("仓库已空,正等待生产...");
				wait();
			} catch (InterruptedException e) {
				System.out.println("stop push product because other reasons");
//				必须用while,因为当线程在wait的时候被打断,那么程序会跳出if而去执行下一条语句
			}
		}
		top--;
		pro = products[top];
		products[top] = null;
		return pro;
	}
}
以上这个类模拟装产品的仓库(以栈为例,先进后出)
package thread.producerconsumer;

public class Test {
	public static void main(String[] args) {
		StoreHouse storeHouse = new StoreHouse();
		Producer producer = new Producer("生产者", storeHouse);
		Consumer comsumer = new Consumer("消费者", storeHouse);
		Thread t1 = new Thread(producer);
		Thread t2 = new Thread(comsumer);
		t1.start();
		t2.start();
	}
}
以上为测试类 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值