你真的懂wait、notify和notifyAll吗
摘要:
生产者消费者模型是我们学习多线程知识的一个经典案例,一个典型的生产者消费者模型如下: public void produce() { synchronized (this) { while (mBuf.isFull()) { try { wait(); } catch (InterruptedExc 阅读全文
posted @ 2019-11-01 14:03 四海骄阳 阅读(441) 评论(0) 推荐(0) 编辑