2021年7月22日

备忘录模式

摘要: 备忘录模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace DesignPattern.BehavioralPattern 7 阅读全文

posted @ 2021-07-22 16:32 HowieGo 阅读(45) 评论(0) 推荐(0) 编辑

2021年7月19日

责任链模式

摘要: 责任链模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace DesignPattern.BehavioralPattern 7 阅读全文

posted @ 2021-07-19 15:41 HowieGo 阅读(56) 评论(0) 推荐(0) 编辑

策略模式

摘要: 策略模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace DesignPattern.BehavioralPattern 7 阅读全文

posted @ 2021-07-19 15:13 HowieGo 阅读(55) 评论(0) 推荐(0) 编辑

2021年7月15日

状态模式

摘要: 状态模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace De 阅读全文

posted @ 2021-07-15 10:29 HowieGo 阅读(40) 评论(0) 推荐(0) 编辑

2021年7月12日

中介者模式

摘要: 中介者模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace D 阅读全文

posted @ 2021-07-12 09:47 HowieGo 阅读(47) 评论(0) 推荐(0) 编辑

2021年7月5日

观察者模式

摘要: 观察者模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace D 阅读全文

posted @ 2021-07-05 16:20 HowieGo 阅读(42) 评论(0) 推荐(0) 编辑

迭代器模式

摘要: 迭代器模式结构: 1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Text; 6 using System.Thre 阅读全文

posted @ 2021-07-05 11:53 HowieGo 阅读(34) 评论(0) 推荐(0) 编辑

2021年7月2日

命令模式

摘要: 命令模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace De 阅读全文

posted @ 2021-07-02 16:14 HowieGo 阅读(45) 评论(0) 推荐(0) 编辑

2021年6月28日

模板方法模式

摘要: 模板方法模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 阅读全文

posted @ 2021-06-28 16:47 HowieGo 阅读(35) 评论(0) 推荐(0) 编辑

代理模式

摘要: 代理模式结构: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace De 阅读全文

posted @ 2021-06-28 15:59 HowieGo 阅读(38) 评论(0) 推荐(0) 编辑

导航