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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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

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

线程间通信中写的例子,几乎跟老师的一模一样,可编译失败。在线等

class ZiYuan    //共享资源
{
        String name;
        String sex;
        boolean flag ;
}

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 赞一个!

查看全部评分

8 个回复

倒序浏览
先洗个澡去。半小时后来看
回复 使用道具 举报
boolean flag ;基本数据类型没有初始化,
回复 使用道具 举报
本帖最后由 邹海洋 于 2012-10-30 12:47 编辑
古银平 发表于 2012-10-30 12:15
boolean flag ;基本数据类型没有初始化,

亲爱的版主大人,元芳说:“非也,非也。”flag 作为成员变量,会有默认的初始值。
回复 使用道具 举报
class InPut中  x = (x+1)%2; 放的位置不对,应该和notify();在一个括号里,这样x的值才能变化

评分

参与人数 1技术分 +1 收起 理由
冯海霞 + 1

查看全部评分

回复 使用道具 举报
ZiYuan.flag 这是对静态属性的引用方式,ZiYuan的属性flag不是静态的,
noitfy和wait方法在同步代码块中是有规则的,简单来写:
synchronized(zy){
      zy.wait();

      zy.notify();
}

评分

参与人数 1技术分 +1 收起 理由
冯海霞 + 1

查看全部评分

回复 使用道具 举报
黑马贾林栋 发表于 2012-10-30 13:07
class InPut中  x = (x+1)%2; 放的位置不对,应该和notify();在一个括号里,这样x的值才能变化 ...

对的,我括错了。程序可以运行,但打印的都是 丽丽。。。。女 。呵呵
回复 使用道具 举报
李连闯 发表于 2012-10-30 13:13
ZiYuan.flag 这是对静态属性的引用方式,ZiYuan的属性flag不是静态的,
noitfy和wait方法在同步代码块中是 ...

对的 。呵呵 把这个改过来就可以了感谢
回复 使用道具 举报
邹海洋 发表于 2012-10-30 13:17
对的 。呵呵 把这个改过来就可以了感谢

客气,哈哈,:lol
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马