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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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 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("丽丽","女");
                        else
                                r.set("mike","man");
                        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();
        }
}

3 个回复

倒序浏览
太慌张了
public synchronized void out()
        {
                if(flag)   //应该是if(!flag)
                        try{this.wait();}catch(Exception e){}
                System.out.println(name+"....."+sex);
                flag=false;
                this.notify();
        }

评分

参与人数 2技术分 +1 黑马币 +1 收起 理由
职业规划-刘倩老师 + 1
张小庆 + 1 赞一个!

查看全部评分

回复 使用道具 举报
class Res
{
        private String name;
        private String sex;
        private boolean flag=false;
        public synchronized void set(String name,String sex)
        {
                while(flag)   这也是while
                        try{this.wait();}catch(Exception e){}
                this.name=name;
                this.sex=sex;
                flag=true;
                this.notifyAll();   notifyAll 唤醒全部线程
        }
        public synchronized void out()
        {
                while(!flag)   改成while的   要不然会全部等待的  你最大的错误时这的flag标记  没有取反   永远都输出不了的    输入线程运行完等待后  输出线程直接wait了
                        try{this.wait();}catch(Exception e){}       就没唤醒其他线程  所以都wait了
                System.out.println(name+"....."+sex);
                flag=false;
                this.notifyAll();     notifyAll 唤醒全部线程

        }
}
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("丽丽","女");
                        else
                                r.set("mike","man");
                        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();
        }
}

评分

参与人数 2技术分 +2 黑马币 +1 收起 理由
职业规划-刘倩老师 + 2
张小庆 + 1 赞一个!

查看全部评分

回复 使用道具 举报
{:soso_e127:}汗一个,实在是太慌张了,谢谢二位了!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马