- public class InputOutputDemo2
- {
- public static void main(String[] args)
- {
- Res1 r=new Res1();
- Thread t1=new Thread(new Input1(r));//1.创建了一个Input线程;
- Thread t2=new Thread(new Output1(r));
- //2.创建了一个Output线程;
- t1.start();
- t2.start();
-
- }
- }
- class Res1
- {
- private String name;
- private String sex;
- private boolean flag=false;//初始标记为false;
- public synchronized void set(String name,String sex)
- {
- if(flag)
- try{this.wait();}catch(InterruptedException e){}
- this.name=name;
- this.sex=sex;
- flag=true;
- this.notify();
- }
- public synchronized void out()
- {
- if(!flag)
- try{this.wait();}catch(InterruptedException e){}
- System.out.println(name+"-----"+sex);
- flag=false;
- this.notify();
- }
- }
- class Input1 implements Runnable
- {
- private Res1 r;
- Input1(Res1 r)
- {
- this.r=r;
- }
- public void run()//3.假设t1先执行。
- {
- int x=0;
- while(true)
- {
- if(x==0)
- r.set("zhangsan","man");//4.到此调用set方法,flag为假,赋值。将flag置为true。
- else
- r.set("lisi","woman");//6.因为循环执行这个set方法,flag为真,当前线程wait(),并放弃this锁。t2开始执行。
- x=(x+1)%2;//5.x由0变为1.
- }
- }
- }
- class Output1 implements Runnable
- {
- private Res1 r;
- Output1(Res1 r)
- {
- this.r=r;
- }
- public void run()
- {
- while(true)
- {
- r.out();//(!flag)为flase,输出,flag置为假。循环,(!flag)为真,wait()。notify()将t1唤醒。
- }
- }
- }
复制代码 这是只有两个线程的情况,当出现多线程时,便会出现错误。
在线程间通讯时使用Lock更为方便,更有针对性。 |