下面教程实例,我修改了一些代码。
class Res
{
String name;
String sex;
Boolean flag=false;
}
class Input implements Runnable
{
Object obj=new Object();
private Res r;
Input(Res r)
{
this.r=r;
}
public void run()
{
int x=0;
while(true)
{
synchronized(r)
{
try{r.wait();}catch (Exception e){}
if(x==0)
{
r.name="mike";
r.sex="man";
}
else
{
r.name="丽丽";
r.sex="女女女女";
}
x=(x+1)%2;
r.notify();
}
}
}
}
class Output implements Runnable
{
Object obj=new Object();
private Res r;
Output(Res r)
{
this.r=r;
}
public void run()
{
while(true)
{
synchronized(r)
{
r.notify();
System.out.println(r.name+"......"+r.sex);
try{r.wait();}catch (Exception e){}
}
}
}
}
class InputOutputDemo
{
public static void main(String[] args)
{
Res r=new Res();
Input in=new Input(r);
Output out=new Output(r);
Thread t1=new Thread(in);
Thread t2=new Thread(out);
t1.start();
t2.start();
}
}
我觉得两个同步代码块里面都有wait(),就应该最多执行一两次,就都等待。
但是为什么有时候运行,还可以打印很多行呢? |