生产者消费者--Consumer.java

package org.shw.pc;

public class Consumer implements Runnable {
private Info info=null;

public Consumer(Info info){
this.info=info;
}
public void run() {
for(int x=0;x<100;x++){
this.info.get();
}
}

}
posted @ 2012-03-19 21:56  haiwei.sun  阅读(156)  评论(0编辑  收藏  举报
返回顶部