java中wait,notify,notifyAll示例

Message.java

public class Message {
    private String msg;
    
    public Message(String str){
        this.msg=str;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public void setMsg(String str) {
        this.msg=str;
    }
}


Notifier.java

public class Notifier implements Runnable {
 
    private Message msg;
     
    public Notifier(Message msg) {
        this.msg = msg;
    }
 
    @Override
    public void run() {
        String name = Thread.currentThread().getName();
        System.out.println(name+" started");
        try {
            Thread.sleep(1000);
            synchronized (msg) {
                msg.setMsg(name+" Notifier work done");
                //msg.notify();
                 msg.notifyAll();
            }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
         
    }
}

Waiter.java

public class Waiter implements Runnable{
    
   private Message msg;
    
   public Waiter(Message m){
       this.msg=m;
   }

   @Override
   public void run() {
       String name = Thread.currentThread().getName();
       synchronized (msg) {
           try{
               System.out.println(name+" waiting to get notified at time:"+System.currentTimeMillis());
               msg.wait();
           }catch(InterruptedException e){
               e.printStackTrace();
           }
           System.out.println(name+" waiter thread got notified at time:"+System.currentTimeMillis());
           //process the message now
           System.out.println(name+" processed: "+msg.getMsg());
       }
   }
}

WaitNotifyTest.java

public class WaitNotifyTest {

	public static void main(String[] args) {
		Message msg = new Message("process it");
        Waiter waiter = new Waiter(msg);
        new Thread(waiter,"11111111111").start();
         
        Waiter waiter1 = new Waiter(msg);
        new Thread(waiter1, "2222222222222").start();
         
        Notifier notifier = new Notifier(msg);
        new Thread(notifier, "notifier").start();
        System.out.println("All the threads are started");
	}

}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值