黑马程序员技术交流社区

标题: 毕向东老师基础视频12-04多线程的问题 [打印本页]

作者: 张利    时间: 2012-9-13 22:42
标题: 毕向东老师基础视频12-04多线程的问题
本帖最后由 张利 于 2012-9-14 00:39 编辑

class Res
{
        private String name;
        private String sex;
        private boolean flag;
        
        public synchronized void set(String name,String sex)
        {
                if(flag)
                        try{this.wait();}catch(Exception e){}
                this.name = name;
                this.sex = sex;
                flag = true;
                this.notify();
        }

        public synchronized void out()
        {
                if(!flag)
                        try{this.wait();}catch(Exception e){}
                System.out.println(name+"......"+sex);
                flag = false;
                this.notify();
        }
}

class Input implements Runnable
{
        private Res r;
        Input(Res r)
        {
                this.r=r;
        }
        public void run()
        {
                int x =0;
                while(true)
                {
                        if (x==0)
                                r.set("mike","nan");
                        else
                                r.set("丽丽","女女");
                        x = (x+1)%2;
                                
                }
                        
                        
               
               
        }
}

class Output implements Runnable
{
        
        private Res r;
        Output(Res r)
        {
                this.r=r;
        }

        public void run()
        {
                r.out();
        }
}

class  InputOutputDemoYH
{
        public static void main(String[] args)
        {
                Res r = new Res();
               
                new Thread(new Input(r)).start();
                new Thread(new Output(r)).start();        
        }
}

跟着视频一块块的打出来的 可是运行结果是打印一句之后就锁住了 看代码也没找到是哪里的问题。。。。。。。
作者: 程金    时间: 2012-9-13 22:50
input 里面  while(true) 死循环
作者: 王金科    时间: 2012-9-13 23:11
本帖最后由 王金科 于 2012-9-13 23:14 编辑
  1. public void run()
  2.         {
  3.                 while(true){
  4.                         r.out();
  5.                 }
  6.         }
复制代码
OutPut里的代码改成这样就行了
你的代码里,OutPut线程只转了一次就停了
作者: 李菁    时间: 2012-9-13 23:13
class Output implements Runnable
{
        
        private Res r;
        Output(Res r)
        {
                this.r=r;
        }

        public void run()
        {
           while(true){     没有while循环,当然只打印一次了。
                                 以后都不再走out方法,所以就无法唤醒Inpuut,所以线程一直等待

                r.out();
            }
        }
}






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2