java线程之生产与消费

本文介绍了一个使用Java实现的同步生产者消费者模式案例。通过定义Box类作为共享资源,使用synchronized关键字确保线程安全,并利用wait和notify方法来协调生产和消费过程。Producer和Consumer分别扮演生产者和消费者角色,在有限容量的缓冲区中进行产品的生产和消费。

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

package com.bank;


public class  Box{
int index = 0;
sc[] arrWT = new sc[6];

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

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

}




package com.bank;


public class Consumer implements Runnable{


Box ss = null;
Consumer(Box ss) {
this.ss = ss;
}

public void run() {
for(int i=0; i<20; i++) {
sc wt= ss.pop();
//System.out.println(wt);
System.out.println("消费了:" +wt+"个产品");
try {
Thread.sleep((long) (Math.random()*1000));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}


}





package com.bank;


public class Producer implements Runnable{
Box ss = null;
Producer(Box ss) {
this.ss = ss;
}

public void run() {
for(int i=0; i<20; i++) {
sc wt= new sc(i);
ss.push(wt);
System.out.println("生产了:" + wt+"个产品");
try {
Thread.sleep((long) (Math.random()*200));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}




package com.bank;


public class Main {
public static void main(String[] args) {
Box ss = new Box();
Producer p = new Producer(ss);
Consumer c = new Consumer(ss);
new Thread(p).start();
new Thread(c).start();
}
}


class sc {
int id;
sc(int id) {
this.id = id;
}

public String toString() {
return "sc :" + id;
}
}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值