Do I need to add any packages for the below code to execute successfully? I am getting errors in the code that I have been unable to fix, particularly with reference to using the synchronized
keyword. Can anyone point out what I am doing wrong? Thank you.
Data object:
class Q
{
int n;
boolean valueset=false;
synchronized int get()
{
if(!valueset)
try
{
wait();
}
catch(InterruptedException e)
{
System.out.println("Interrupted Exception Caught.");
}
System.out.println("Got:"+n);
valueset=false;
notify();
return n;
}
synchronized void put(int n)
{
if(valueset)
try
{
wait();
}
catch(InterruptedException e)
{
System.out.println("Interrupted Exception Caught.");
}
this.n=n;
valueset=true;
System.out.println("Put:"+n);
notify();
}
}
Producer:
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++);
}
}
}
Consumer:
class Consumer implements Runnable
{
Q q;
Consumer(Q q)
{
this.q=q;
new Thread(this,"Consumer").start();
}
public void run()
{
while(true)
{
q.get();
}
}
}
Extra class:
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.");
}
}