07 2021 档案

备忘录模式
摘要:备忘录模式结构: 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 阅读(69) 评论(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:41 HowieGo 阅读(78) 评论(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 阅读(69) 评论(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-07-15 10:29 HowieGo 阅读(62) 评论(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 D 阅读全文

posted @ 2021-07-12 09:47 HowieGo 阅读(72) 评论(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 D 阅读全文

posted @ 2021-07-05 16:20 HowieGo 阅读(49) 评论(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 阅读(41) 评论(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-07-02 16:14 HowieGo 阅读(61) 评论(0) 推荐(0)

导航