工厂模式
摘要:
public interface Factory { public LeiFeng CreateLeiFeng(); } public class LeiFeng { public void sweep() { System.out.println("sweep"); } public void wash() { System... 阅读全文
posted @ 2016-05-29 21:35 笨鸟学飞 阅读(159) 评论(0) 推荐(0) 编辑