public class ThreadTest
{
public static Integer i = new Integer(0);
public static void main(String[] args) throws InterruptedException
{
ThreadTest threadTest = new ThreadTest();
Runnable odd = threadTest.new Numbers(1, "thread1");
Runnable even = threadTest.new Numbers(0, "thread2");
((Thread) odd).start();
((Thread) even).start();
}
class Numbers extends Thread
{
int reminder;
String threadName;
Numbers(int reminder, String threadName)
{
this.reminder = reminder;
this.threadName = threadName;
}
@Override
public void run()
{
while (i < 20)
{
synchronized (i)
{
if (i % 2 == reminder)
{
System.out.println(threadName + " : " + i);
i++;
i.notify();
}
else
{
try
{
i.wait();
}
catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
}
}
|
|
||||
|
|
|
You can't synchronize on Since You need to synchronize on some other object that doesn't change during execution. For example, you may create a separate object for this purpose:
|
|||
|
This line:
is equivalent to:
which (due to autoboxing) becomes something like:
So, when you call I'd suggest changing
|
||||
|
|
|
As documentation states the exception is thrown when
It also states that
And this condition can be obtained by
You could try calling the wait method from inside the class that uses |
|||
|
|
|
You cannot put wait() and notify() in the same synchronized block because that will just cause a deadlock. Make sure only the wait and notify functions are wrapped with a synchronized block like this:
|
||||
|
|