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()
        {
                boolean b=true;
                while(true)
                {
                        if(b)
                        {
                                r.set("zhangsan", "man");
                                b=false;
                        }
                        else
                        {
                                r.set("张三", "男");
                                b=true;
                        }
                }
        }
}

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

        /**
         * @param args
         */
        public static void main(String[] args) {
                // TODO Auto-generated method stub

                Res r=new Res();
               
                Input in=new Input(r);
                Outer out=new Outer(r);
               
                Thread t1=new Thread(in);
                Thread t2=new Thread(out);
               
                t1.start();
                t2.start();
        }

}
这个程序用单例 该怎么做?求高手!谢谢!

评分

参与人数 1技术分 +1 收起 理由
奋斗的青春 + 1 赞一个!

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马