H
hongsen
Unregistered / Unconfirmed
GUEST, unregistred user!
import java.util.Date;
class TestWait
{
public static void main(String[] args)
{
while(true)
{
System.out.println("Current time: " + new Date());
TestWait obj = new TestWait();
synchronized(obj)
{
try
{
obj.wait(1000);
}
catch(Exception e)
{
System.out.println("caught exception");
}
}
}
}
}
class TestWait
{
public static void main(String[] args)
{
while(true)
{
System.out.println("Current time: " + new Date());
TestWait obj = new TestWait();
synchronized(obj)
{
try
{
obj.wait(1000);
}
catch(Exception e)
{
System.out.println("caught exception");
}
}
}
}
}