黑马程序员技术交流社区

标题: 线程中出现的问题 [打印本页]

作者: 宋蕈    时间: 2012-4-9 09:59
标题: 线程中出现的问题
class Info{
        private String name;
        private String content;
        private boolean flag=false;
        public synchronized void set(String name,String content){
                this.setName(name);
                try{
                        Thread.sleep(100);
                }catch(InterruptedException e){
                        e.printStackTrace();
                }
                this.setContent(content);

                flag=true;
        }

        public synchronized void get(){
                try{
                                Thread.sleep(100);
                        }catch(InterruptedException e){
                                e.printStackTrace();
                        }
                        System.out.println(this.getName()+"--->"+this.getContent());

                flag=false;
        }
        public void setName(String name){
                this.name=name;
        }

        public String getName(){
                return this.name;
        }

        public void setContent(String content){
                this.content=content;
        }

        public String getContent(){
                return this.content;
        }
}

class Producer implements Runnable{
        private boolean flag=false;
        private Info info;
        public Producer(Info info){
                this.info=info;
        }

        public void run(){
               
                for(int i=0;i<50;i++){

                                if(flag){                               
                                                this.info.set("Tom","JAVA讲师");
                                                flag=false;                                               
                                }else{
                                                this.info.set("Jack","C++讲师");
                                                flag=true;
                                }                       
                       
                }
        }
}

class Consumer implements Runnable{
        private Info info;

        public Consumer(Info info){
                this.info=info;
        }

        public void run(){
                for(int i=0;i<50;i++){
                        this.info.get();
                }
        }
}

class ThreadTest_02{
        public static void main(String[] args){
                Info info=new Info();
                Producer p=new Producer(info);
                Consumer c=new Consumer(info);
                new Thread(p).start();
                new Thread(c).start();
        }
}

这里我想实现 Tom --> java讲师  和Jack --> C++讲师  这两个一样输出一句,怎么实现啊。?
它上面好像就只能 阵输出 Tom --> java讲师  , 要不然就是一阵输出 Jack --> C++讲师。。
作者: 贠(yun)靖    时间: 2012-4-9 10:59
  给set 和get 方法中各添加  wait  notify  就哦了    视频中的 线程等待唤醒机制 那块就会讲  你应该马上就看到了
作者: pray    时间: 2014-4-26 07:17
让人看完后就要往上顶往死里顶的好帖




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2