1、模板模式
模板模式这个没什么好说的,就是多态向上转型的一个应用。
父类为抽象类定义方法,由多个子类用不同方法去实现。
2、工厂模式
包括factory, product, 具体实现工厂和具体实现产品四个类。工厂模式就是模板模式用于生产实例的情况,都是由父类定义方法,子类进行实现。
工厂模式用于生产实例,父类规定出大致的框架,子类根据不同情况在框架的基础上进行具体实现。
实例:来自《图解设计模式》
复制代码
这就是一个用来生产身份证的工厂。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57abstract class Factory { public Product create(string owner){ Product p = createProduct(owner); registerProduct(p); return p; } protected abstract Product createProduct(string owner); protected abstract void registerProduct(Product product); } abstract class Product { public abstract void use(); } class IDCardFactory : Factory { private List<string> owners = new List<string>(); protected Product createProduct(string owner) { return new IDCard(owner); } protected void registerProduct(Product product) { owners.Add(((IDCard)product).getOwner()); } public List<string> getOwners() { return owners; } } class IDCard:Product { private string owner; public IDCard(string owner) { Console.WriteLine("制作"+owner+"的ID卡"); this.owner = owner; } public void use() { Console.WriteLine("使用"+owner+"的ID卡"); } public string getOwner() { return owner; } }
最后
以上就是包容皮带最近收集整理的关于设计模式学习:Template Method以及Factory Method的全部内容,更多相关设计模式学习:Template内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复