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

java wait 和notify的用法

时间:2018-01-11 15:31:06      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:int   nal   his   dex   run   color   post   imp   put   

package com.test;

public class OutputThread implements Runnable {

    private int num;
    private Object lock;

    public OutputThread(int num, Object lock) {
        super();
        this.num = num;
        this.lock = lock;
    }

    public void run() {
        try {
            while(true){
                synchronized(lock){
                    lock.notifyAll();
                    lock.wait();

                    System.out.println(num);
                }
            }
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

    public static void main(String[] args){
        final Object lock = new Object();

        Thread thread1 = new Thread(new OutputThread(1,lock));
        Thread thread2 = new Thread(new OutputThread(2, lock));

        thread1.start();
        thread2.start();
    }

}

 

java wait 和notify的用法

标签:int   nal   his   dex   run   color   post   imp   put   

原文地址:https://www.cnblogs.com/tiancai/p/8267097.html

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