相关代码 |
|
/* * Consumer.java * * Created on 2007年9月21日, 上午12:45 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package producer_consumer_14; /** * * @author Administrator */ public class Consumer implements Runnable{ private Basket basket; /** Creates a new instance of Consumer */ public Consumer(Basket basket) { this.basket = basket; } public void run() { basket.consume(); } }
相关资源 |
|