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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 zhanghua 于 2011-11-21 13:57 编辑

在看线程的时候发Object对象中wait()和wait(long timeout)有什么作用呢?notify()方法是干什么的,notifyAll()又是干什么的
,这和线程有什么关系?

评分

参与人数 1技术分 +1 收起 理由
admin + 1

查看全部评分

1 个回复

倒序浏览
上面的方法都是用在同步函数和同步代码块内部的。wait(),是是线程处于冻结状态。wait(Long timeout),是设定线程处于冻结状态超时时调用的方法。notify()会唤醒(按进入冻结状态的顺序唤醒)冻结的线程进入执行状态,而notifyAll()会唤醒所有在线程池中处于冻结状态的线程。具体和线程有什么关系,看毕老师的视频,多线程部分,讲解的很详细。
一个生产者和消费者的例子,希望对你有帮助
class Resouce{
        private String name;
        private int count;
        boolean flag=false;
        public synchronized void produce(String name){
                while(flag)
                        try{this.wait();}catch(Exception e){}//本方线程进入冻结状态
                this.name=name+count++;
               
                System.out.println(Thread.currentThread().getName()+"生产者"+"  ->"+this.name);
                flag=true;
                this.notifyAll();//唤醒所有处于冻结状态的线程
        }
        public synchronized void consumer(){
                while(!flag)
                        try{this.wait();}catch(Exception e){}//本方线程进入冻结状态
               
                System.out.println(Thread.currentThread().getName()+"消费者  --->"+this.name+this.name);
                flag=false;
                this.notifyAll();//唤醒所有处于冻结状态的线程
        }
}
class Producer implements Runnable{
        Resouce r;
        public Producer(Resouce r){
                this.r=r;
        }
        public void run(){
                while(true){
                        r.produce("商品");
                }
        }
}
class Consumer1 implements Runnable{
        private Resouce r;
        public Consumer1(Resouce r){
                this.r=r;
        }
        public void run(){
                while(true){
                        r.consumer();
                }
        }
}
public class TestTc {
        public static void main(String[] args) {
                Resouce r = new Resouce ();
                Producer p = new Producer (r);
                Consumer1 c = new Consumer1 (r);
                new Thread(p).start();
                new Thread(c).start();
               
        }

}
复制代码

评分

参与人数 1技术分 +1 收起 理由
宁超 + 1

查看全部评分

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