码迷,mamicode.com
首页 > 编程语言 > 详细

多线程(四)wait()、notify()以及notifyAll()

时间:2019-06-16 09:40:47      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:color   notify   ack   stack   dex   trace   tac   public   run   

六、线程得等待和唤醒

 

1.wait()和notify()的简单示范

技术图片
public class Wait extends Thread{
    public synchronized  void run()
    {
        System.out.println(getName()+"执行notify()");
        notify();

    }
    public static void main(String []args) {
        Wait w = new Wait();
        synchronized (w){
        try {
            w.start();

            System.out.println(Thread.currentThread().getName() + "等待");
            w.wait();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    }
}
View Code

这程序的流程是main线程被暂停,之后w线程执行notify()方法唤醒main()

多线程(四)wait()、notify()以及notifyAll()

标签:color   notify   ack   stack   dex   trace   tac   public   run   

原文地址:https://www.cnblogs.com/lbrs/p/11029443.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!