- 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那我真心听不懂,还请大神们详细讲解一下,在下提前谢谢了
复制代码 |
|