摘要: package de.bvb; /** * 生产者消费者模式 * 通过 wait() 和 notify() 通信方法实现 * */ public class Test1 { public static void main(String[] args) { Godown godown = new Godown(50); for (int i = ... 阅读全文
posted @ 2016-12-28 17:49 MarcoReus 阅读(324) 评论(0) 推荐(0) 编辑