摘要:
5、工厂方法模式(未完成) 阅读全文
摘要:
3、适配器模式 提供适配器的类,此类可以根据传参的类,执行不同的类的实现 namespace SJ.DesignMode { /// <summary> /// 设计模式 /// </summary> class Program { static void Main(string[] args) { 阅读全文
摘要:
2、外观模式 一个类的一个方法中执行其他类的方法,客户端操作方便 //把需要暴露给外部的功能集中到外观中 //什么时候使用? 多层结构系统、松散偶尔、简化客户端使用 namespace SJ.DesignMode { /// <summary> /// 设计模式 /// </summary> cla 阅读全文
摘要:
1、简单工厂 (调用静态方法实例化需要的类) class Program { static void Main(string[] args) { //1、简单工厂 IMan man = Factory.Create(FactoryType.Student); man.Go(); } } public 阅读全文