2016年12月3日
摘要: //进水 class Inflow implements Runnable{ //水对象 Water wat; public Inflow(Water w){ this.wat = w; } @Override public void run() { //进水 while (true) { synchronized (wat) { while... 阅读全文
posted @ 2016-12-03 08:26 ljyhyy 阅读(454) 评论(0) 推荐(0)