전형 적 인 생산자 소비자 모델
5918 단어 디자인 모드
import HomeWork01.Container.Producer;
/**
* , , put(),take() ;
*@project Java_pro
*/
class Container {
/**
* size: ;
* array: ;
* sth: , sth--;
*/
private int size;
private Object[] array;
private volatile Integer sth = 100;
/* */
public Container(int cap) {
this.array = new Object[cap];
}
/**
* tName:
* @param obj:
* , , wait() , , ;
* size obj, tName obj, ;
* wait() , ;
*/
public synchronized void put(Object obj) {
String tName = Thread.currentThread().getName();
while (size == array.length) {
System.out.println(" 。");
try {
wait();
} catch (InterruptedException e) {
}
}
array[size] = obj;
System.out.println("Thread " + tName + " put: " + obj);
size++;
notifyAll();
}
/**
* tName:
* , , wait() , , ;
* , tName obj;
* 1 0 -1 , size-1 ,size--;
* wait() , ;
*/
public synchronized void take() {
String tName = Thread.currentThread().getName();
while (size == 0) {
System.out.println(" 。");
try {
wait();
} catch (InterruptedException e) {
}
}
Object temp = array[0];
System.out.println("Thread " + tName + " take:" + temp);
System.arraycopy(array, 1, array, 0, size - 1);
size--;
array[size] = null;
notifyAll();
}
/* put() sth*/
class Producer extends Thread {
Container container;
public Producer(Container container) {
this.container = container;
}
@Override
public void run() {
while (true) {
container.put(sth);
--sth;
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
}
}
/* take() sth*/
class Consumer extends Thread {
Container container;
Object temp;
public Consumer(Container container) {
this.container = container;
}
@Override
public void run() {
while (true) {
container.take();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
}
}
}
public class Producer_ConsumerDemo {
public static void main(String[] args) throws InterruptedException {
Container c = new Container(5);
Producer pro1 = c.new Producer(c);
pro1.start();
c.new Consumer(c).start();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
디자인 모델 의 공장 모델, 단일 모델자바 는 23 가지 디자인 모델 (프로 그래 밍 사상/프로 그래 밍 방식) 이 있 습 니 다. 공장 모드 하나의 공장 류 를 만들어 같은 인 터 페 이 스 를 실현 한 일부 종 류 를 인 스 턴 스 로 만 드 는 것...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.