摘要: 工厂方法模式1 创建业务基类2 创建具体业务类3 创建接口1 创建业务基类class LeiFen{ public void Wash() { Console.WriteLine("wash"); } public void Sleep() { Console.WriteLine("sleep"); }}2 创建具体业务类class DaXueShen:LeiFeng{ public DaXueS... 阅读全文
posted @ 2010-03-19 11:04 大树2 阅读(193) 评论(0) 推荐(0) 编辑