黑马程序员技术交流社区
标题:
等待唤醒机制提问
[打印本页]
作者:
横溢天使
时间:
2015-9-26 12:03
标题:
等待唤醒机制提问
class InputOutputDemo
{
public static void main(String[] args)
{
Res r=new Res();
Input i=new Input(r);
Output o=new Output(r);
Thread t=new Thread(i);
Thread t1=new Thread(o);
t.start();
t1.start();
}
}
class Res
{
String name;
String sex;
boolean flag;
}
class Input implements Runnable
{
private Res r;
Input(Res r)
{
this.r=r;
}
public void run()
{
int x=0;
while(true)
{
synchronized(r)
{
if(!r.flag)
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.flag=false;
r.notify();
}
}
}
}
class Output implements Runnable
{
private Res r;
Output(Res r)
{
this.r=r;
}
public void run()
{
while(true)
{
synchronized(r)
{
if(!r.flag)
try{r.wait();}catch (Exception e){}
System.out.println(r.name+"*****"+r.sex);
r.flag=true;
r.notify();
}
}
}
}
毕老师讲的flag那我真心听不懂,还请大神们详细讲解一下,在下提前谢谢了
复制代码
作者:
横溢天使
时间:
2015-9-26 12:50
是不是if(flag)表示flag是true?所以Input才等待?
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2