上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 35 下一页
摘要: 建造者模式用例圖 代碼 class Program { static void Main(string[] args) { Director director = new Director(); Builder b1 = new ConcreteBuilder1(); Builder b2 = ne 阅读全文
posted @ 2016-03-11 11:48 好好學習 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 外觀模式用例圖 外觀模式的基本代碼 class Program { static void Main(string[] args) { Facade facade = new Facade(); facade.MethodA(); facade.MethodB(); Console.Read(); 阅读全文
posted @ 2016-03-11 11:47 好好學習 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 模板方法模式用例图 class Program { static void Main(string[] args) { AbstractClass c; c = new ConcreteClassA(); c.TemplateMethod(); c = new ConcreteClassB(); c 阅读全文
posted @ 2016-03-10 23:37 好好學習 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 原型模式用例图 class Program { static void Main(string[] args) { Resume a = new Resume("大鸟"); a.SetPersonalInfo("男", "29"); a.SetWorkExperience("1998-2000", 阅读全文
posted @ 2016-03-10 23:18 好好學習 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 工厂方法用例图 运算类及其实现方法 /// <summary> /// 运算类 /// </summary> class Operation { private double _numberA = 0; private double _numberB = 0; public double Numbe 阅读全文
posted @ 2016-03-10 23:13 好好學習 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 代理模式用例图 class Program { static void Main(string[] args) { Proxy proxy = new Proxy(); proxy.Request(); Console.Read(); } } abstract class Subject { pub 阅读全文
posted @ 2016-03-10 23:04 好好學習 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 装饰模式用例图 class Program { static void Main(string[] args) { ConcreteComponent c = new ConcreteComponent(); ConcreteDecoratorA d1 = new ConcreteDecorator 阅读全文
posted @ 2016-03-10 22:56 好好學習 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 策略模式的用例图 定义一个算法抽象策略类 //抽象算法类 abstract class Strategy { //算法方法 public abstract void AlgorithmInterface(); } 通过继承实现具体的算法 //具体算法A class ConcreteStrategyA 阅读全文
posted @ 2016-03-10 22:34 好好學習 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 简单工厂模式uml例图 实现代码基本如下 创建一个运算类 /// <summary> /// 运算类 /// </summary> public class Operation { private double _numberA = 0; private double _numberB = 0; / 阅读全文
posted @ 2016-03-10 21:44 好好學習 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 大话设计模式中的利用反射加抽象工厂的数据访问程序。先来看看反射技术的基本格式:--反射工廠 Assembly.Load(“程序集名称”).CreateInstance(“命名空间.类名称”); 只要在程序顶端写上using System.Reflection来引用Reflection,就可以采用反射 阅读全文
posted @ 2016-03-10 13:53 好好學習 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 35 下一页