A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 邹海洋 中级黑马   /  2012-10-30 12:50  /  857 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 邹海洋 于 2012-10-30 13:19 编辑

这个程序跟老师的几乎一模一样,但是编译失败,求解?


/*
线程间通信存在的问题
int 和 out 不同步
有一堆资源
两辆车,一进 一出
两条路
*/
class ZiYuan
{
        String name;
        String sex;
        boolean flag = false ;
}

class InPut implements Runnable
{
        ZiYuan zy;
        InPut(ZiYuan zy)
        {
                this.zy = zy;
        }
        public void run()
        {
                int x = 0;
                while (true)
                {
                        
                        synchronized(zy)
                        {
                                if (ZiYuan.flag)
                                {
                                        try
                                        {
                                                wait();
                                        }
                                        catch (Exception e)
                                        {
                                        }
                                }
                                if (x==0)
                                {
                                        zy.name = "mike";
                                        zy.sex = "man";
                                }
                                else
                                {
                                        zy.name = "丽丽";
                                        zy.sex = "女";
                                }
                                ZiYuan.flag = true;
                                notify();
                        }
                        x = (x+1)%2;
                        
                        
                }
        
        }
}

class OutPut implements Runnable
{
        ZiYuan zy ;
        OutPut(ZiYuan zy)
        {
                this.zy = zy;
        }
        public void run()
        {
                while (true)
                {
                        synchronized(zy)
                        {
                                if (!ZiYuan.flag)
                                {
                                        try
                                        {
                                                wait();
                                        }
                                        catch (Exception e)
                                        {
                                        }
                                }
                                System.out.println(zy.name+"....."+zy.sex);
                                ZiYuan.flag = false;
                                notify();
                        }
                }
        
        }
}
class  InOutDemo
{
        public static void main(String[] args)
        {
                ZiYuan zy = new ZiYuan();

                InPut in = new InPut(zy);
                OutPut out = new OutPut(zy);

                Thread t1 = new Thread(in);
                Thread t2= new Thread(out);

                t1.start();
                t2.start();
        }
}

评分

参与人数 1技术分 +1 收起 理由
韩军博 + 1 神马都是浮云

查看全部评分

1 个回复

倒序浏览
找到了。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马