Java 멀티스레드 생산자 소비자 모델
2098 단어 java 다중 루틴생산자 소비자 모델
/**
* ( )
*/
public class Info {
private boolean b = false;
private String name = " ";
private int age = 22;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public synchronized void set(String name, int age) {
if (!b) {
try {
wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
this.name = name;
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
this.age = age;
b = false;
notifyAll();
}
public synchronized void get() {
if (b) {
try {
wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(this.getName() + "--" + this.getAge());
b = true;
notifyAll();
}
}
/**
*
*/
public class Producer implements Runnable {
private Info info = null;
Producer(Info info) {
this.info = info;
}
@Override
public void run() {
boolean b = false;
for (int i = 0; i <= 10; i++) {
if (b) {
this.info.set(" ", 22);
b = false;
} else {
this.info.set(" ", 66);
b = true;
}
}
}
}
4
/**
*
*/
public class Consumer implements Runnable {
private Info info = null;
public Consumer(Info info) {
this.info = info;
}
@Override
public void run() {
for (int i = 0; i <= 10; i++) {
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
this.info.get();
}
}
}
테스트 클래스public class TestMain {
public static void main(String[] args) {
Info info = new Info();
Producer pro = new Producer(info);
Consumer con = new Consumer(info);
new Thread(pro).start();
new Thread(con).start();
}
}
Google 번역으로 복사
번역 결과
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java 멀티스레드 스레드 동기화이 Lock 자물쇠는 현식 생성, 잠금, 방출이 필요합니다.synchronized 키워드보다 현식 Lock 자물쇠는 사용이 번거롭고 사용 시 오류가 발생할 수 있지만 더욱 강력한 기능이 있습니다.locks 패키지에는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.