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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© a8851625 中级黑马   /  2014-10-22 16:25  /  757 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


class Res
{
        private String name;

        private String sex;
        private boolean flag=false;

        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 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","man");
                        else
                                r.set("lili","woman");
                        x=(x+1)%2;
                }
        }
}

class Output implements Runnable
{
        private Res r;
       
        Output(Res r)
        {
                this.r=r;
        }
        public void run()
        {
                while(true)
                {
                        r.out();       
                }
               
        }
}

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



这是比老师多线程数据通信的代码。我按照这个编译没有问题,可是运行的时候就只跑了一行,然后收到这样的提示。郁闷啊。
mike....man
Exception in thread "Thread-1" java.lang.IllegalMonitorStateException
        at java.lang.Object.notify(Native Method)
        at Res.out(InputOutputDemo.java:48)
        at Output.run(InputOutputDemo.java:83)
        at java.lang.Thread.run(Thread.java:745)


评分

参与人数 1黑马币 +1 收起 理由
杨佳名 + 1 赞一个!

查看全部评分

1 个回复

倒序浏览
啊,我已经理解诶了!!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马