Tuesday, April 28, 2020

Write Java Program to Solve producer Consumer Problem using inter thread Communication?

For Better Understanding of the Problem - See the Video

https://youtu.be/RvRRVxfrir0

class Q {
int n;
boolean valueSet = false;
synchronized int get() {
while(!valueSet)
try {
wait();
} catch(InterruptedException e) {
System.out.println("InterruptedException caught");
}
System.out.println("Got: " + n);
valueSet = false;
notify();
return n;
}
synchronized void put(int n) {
while(valueSet)
try {
wait();
} catch(InterruptedException e) {
System.out.println("InterruptedException caught");
}
this.n = n;
valueSet = true;
System.out.println("Put: " + n);
notify();
}
}
class Producer implements Runnable {
Q q;
Producer(Q q) {
this.q = q;
new Thread(this, "Producer").start();
}
public void run() {
int i = 0;
while(true) {
q.put(i++);
if(i==3)
break;
}
}
}
class Consumer implements Runnable {
Q q;
Consumer(Q q) {
this.q = q;
new Thread(this, "Consumer").start();
}
public void run() {
int j=0;
while(true) {
q.get();
j++;
if(j==3)
break;
}
}
}
class PCFixed {
public static void main(String args[]) {
Q q = new Q();
new Producer(q);
new Consumer(q);
System.out.println("Press Control-C to stop.");
}
}

Output :
---------- execute ----------
Put: 0
Got: 0
Put: 1
Got: 1
Put: 2
Got: 2

Output completed (0 sec consumed) - Normal Termination

No comments:

Post a Comment