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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 906822773 中级黑马   /  2014-6-28 21:07  /  646 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class Res
{
        String name;
        String sex;
        boolean flag=false;
}
class Input implements Runnable
{
        private Res r;
        //Object obj=new Object();
        Input(Res r)
        {
        this.r=r;
        }
        public void run()
        {
               
                int x=0;
        while(true)
                {
                synchronized(r) //可以用Input.class
                        {
                if(r.flag)
                        try{r.wait();}catch(Exception e){}
                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;
        //Object obj=new Object();
        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();
        t2.start();
        }
}

运行上面的代码 编译通过 运行报错
错误提示 IllegalMonitorStateException
求解  错在哪里 怎么修改

评分

参与人数 1技术分 +1 收起 理由
李小然 + 1

查看全部评分

1 个回复

倒序浏览
抛出IllegalMonitorStateException异常表明某一线程已经试图等待对象的监视器,或者试图通知其他正在等待对象的监视器而本身没有指定监视器的线程。

你的这class Input implements Runnable里边的这两句代代码:
   r.flag=true;
   r.notify();

应该在锁代码块里边,你写到外边去了,等于是未找到要唤醒的进程

评分

参与人数 1技术分 +1 收起 理由
菜小徐 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马