1. 首页
  2. 编程语言
  3. Java
  4. 操作系统生产者与消费者问题

操作系统生产者与消费者问题

上传者: 2019-02-23 10:03:57上传 RAR文件 3KB 热度 23次
class Queue //key { int value; boolean bFull = false; public synchronized void put(int i) { if (bFull) { try { wait();//必须捕获异常 } catch (InterruptedException e) { e.printStackTrace(); } } value = i; bFull=true; notifyAll();//必须用在sync
用户评论