16.設計模式_叠代器模式
一、引言
在上篇博文中分享了我對命令模式的理解,命令模式主要是把行為進行抽象成命令,使得請求者的行為和接受者的行為形成低耦合。在一章中,將介紹一下叠代器模式。下面廢話不多說了,直接進入本博文的主題。
二、叠代器模式的介紹
叠代器是針對集合對象而生的,對於集合對象而言,必然涉及到集合元素的添加刪除操作,同時也肯定支持遍歷集合元素的操作,我們此時可以把遍歷操作也放在集合對象中,但這樣的話,集合對象就承擔太多的責任了,面向對象設計原則中有一條是單一職責原則,所以我們要盡可能地分離這些職責,用不同的類去承擔不同的職責。叠代器模式就是用叠代器類來承擔遍歷集合元素的職責。
2.1 叠代器模式的定義
叠代器模式提供了一種方法順序訪問一個聚合對象(理解為集合對象)中各個元素,而又無需暴露該對象的內部表示,這樣既可以做到不暴露集合的內部結構,又可讓外部代碼透明地訪問集合內部的數據。
2.2 叠代器模式的結構
既然,叠代器模式承擔了遍歷集合對象的職責,則該模式自然存在2個類,一個是聚合類,一個是叠代器類。在面向對象涉及原則中還有一條是針對接口編程,所以,在叠代器模式中,抽象了2個接口,一個是聚合接口,另一個是叠代器接口,這樣叠代器模式中就四個角色了,具體的類圖如下所示:
從上圖可以看出,叠代器模式由以下角色組成:
- 叠代器角色(Iterator):叠代器角色負責定義訪問和遍歷元素的接口
- 具體叠代器角色(Concrete Iteraror):具體叠代器角色實現了叠代器接口,並需要記錄遍歷中的當前位置。
- 聚合角色(Aggregate):聚合角色負責定義獲得叠代器角色的接口
- 具體聚合角色(Concrete Aggregate):具體聚合角色實現聚合角色接口。
2.3 叠代器模式的實現
介紹完叠代器模式之後,下面就具體看看叠代器模式的實現,具體實現代碼如下:
1 // 抽象聚合類 2 public interface IListCollection 3 { 4 Iterator GetIterator(); 5 } 6 7 // 叠代器抽象類 8 public interface Iterator 9 { 10 bool MoveNext(); 11 Object GetCurrent(); 12 void Next(); 13 void Reset(); 14 } 15 16 // 具體聚合類 17 public class ConcreteList : IListCollection 18 { 19 int[] collection; 20 public ConcreteList() 21 { 22 collection = new int[] { 2, 4, 6, 8 }; 23 } 24 25 public Iterator GetIterator() 26 { 27 return new ConcreteIterator(this); 28 } 29 30 public int Length 31 { 32 get { return collection.Length; } 33 } 34 35 public int GetElement(int index) 36 { 37 return collection[index]; 38 } 39 } 40 41 // 具體叠代器類 42 public class ConcreteIterator : Iterator 43 { 44 // 叠代器要集合對象進行遍歷操作,自然就需要引用集合對象 45 private ConcreteList _list; 46 private int _index; 47 48 public ConcreteIterator(ConcreteList list) 49 { 50 _list = list; 51 _index = 0; 52 } 53 54 55 public bool MoveNext() 56 { 57 if (_index < _list.Length) 58 { 59 return true; 60 } 61 return false; 62 } 63 64 public Object GetCurrent() 65 { 66 return _list.GetElement(_index); 67 } 68 69 public void Reset() 70 { 71 _index = 0; 72 } 73 74 public void Next() 75 { 76 if (_index < _list.Length) 77 { 78 _index++; 79 } 80 81 } 82 } 83 84 // 客戶端 85 class Program 86 { 87 static void Main(string[] args) 88 { 89 Iterator iterator; 90 IListCollection list = new ConcreteList(); 91 iterator = list.GetIterator(); 92 93 while (iterator.MoveNext()) 94 { 95 int i = (int)iterator.GetCurrent(); 96 Console.WriteLine(i.ToString()); 97 iterator.Next(); 98 } 99 100 Console.Read(); 101 } 102 }
自然,上面代碼的運行結果也是對集合每個元素的輸出,具體運行結果如下圖所示:
三、.NET中叠代器模式的應用
在.NET下,叠代器模式中的聚集接口和叠代器接口都已經存在了,其中IEnumerator接口扮演的就是叠代器角色,IEnumberable接口則扮演的就是抽象聚集的角色,只有一個GetEnumerator()方法,關於這兩個接口的定義可以自行參考MSDN。在.NET 1.0中,.NET 類庫中很多集合都已經實現了叠代器模式,大家可以用反編譯工具Reflector來查看下mscorlib程序集下的System.Collections命名空間下的類,這裏給出ArrayList的定義代碼,具體實現代碼可以自行用反編譯工具查看,具體代碼如下所示:
1 public class ArrayList : IList, ICollection, IEnumerable, ICloneable 2 { 3 // Fields 4 private const int _defaultCapacity = 4; 5 private object[] _items; 6 private int _size; 7 [NonSerialized] 8 private object _syncRoot; 9 private int _version; 10 private static readonly object[] emptyArray; 11 12 public virtual IEnumerator GetEnumerator(); 13 public virtual IEnumerator GetEnumerator(int index, int count); 14 15 // Properties 16 public virtual int Capacity { get; set; } 17 public virtual int Count { get; } 18 ..............// 更多代碼請自行用反編譯工具Reflector查看 19 }
通過查看源碼你可以發現,ArrayList中叠代器的實現與我們前面給出的示例代碼非常相似。然而,在.NET 2.0中,由於有了yield return關鍵字,實現叠代器模式就更簡單了,關於叠代器的更多內容可以參考我的這篇博文。
四、叠代器模式的適用場景
在下面的情況下可以考慮使用叠代器模式:
- 系統需要訪問一個聚合對象的內容而無需暴露它的內部表示。
- 系統需要支持對聚合對象的多種遍歷。
- 系統需要為不同的聚合結構提供一個統一的接口。
五、叠代器模式的優缺點
由於叠代器承擔了遍歷集合的職責,從而有以下的優點:
- 叠代器模式使得訪問一個聚合對象的內容而無需暴露它的內部表示,即叠代抽象。
- 叠代器模式為遍歷不同的集合結構提供了一個統一的接口,從而支持同樣的算法在不同的集合結構上進行操作
叠代器模式存在的缺陷:
- 叠代器模式在遍歷的同時更改叠代器所在的集合結構會導致出現異常。所以使用foreach語句只能在對集合進行遍歷,不能在遍歷的同時更改集合中的元素。
六、總結
到這裏,本博文的內容就介紹結束了,叠代器模式就是抽象一個叠代器類來分離了集合對象的遍歷行為,這樣既可以做到不暴露集合的內部結構,又可讓外部代碼透明地訪問集合內部的數據。在一篇博文中將為大家介紹觀察者模式。
16.設計模式_叠代器模式