- class Res
- {
- String name;
- String sex;
- boolean flag = false;
- }
- 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{Thread.sleeps(10);}catch(Exception e){}//这里是sleep的冻结状态没有释放锁,这有到时间自己就换唤醒
- try{r.wait();}catch(Exception e){}//这里是wait的冻结状态(释放锁),只有notify可以唤醒
- if(x==0)
- {
- r.name="mike";
- r.sex="man";
- }
- else
- {
- r.name="丽丽";
- r.sex = "女女女女女";
- }
- x = (x+1)%2;
- r.flag = true;
- 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 = false;
- r.notify();
- }
- }
- }
- }
- 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();//线程的被创建状态,可以去执行run方法
- t2.start();
- //线程中的run方法结束,线程也就结束了。stop方法结束已经不常用了。
- }
- }
复制代码 线程的一个生命周期要经历几个状态是要看你调用的方法的。线程共有四种状态,被创建,运行,冻结,和消亡。
请看下面的代码。 |