.Net索引器
- 索引器
索引器允许类或结构的实例按照与数组相同的方式进行索引。索引器类似于属性,不同之处在于它们的访问器采用参数。
- 特性
- 索引器使得对象可按照与数组相似的方法进行索引。
- get 访问器返回值。set 访问器分配值。
- this 关键字用于定义索引器。
- value 关键字用于定义由 set 索引器分配的值。
- 索引器不必根据整数值进行索引,由您决定如何定义特定的查找机制。
- 索引器可被重载。
- 索引器可以有多个形参,例如当访问二维数组时。
- 代码示例
- class SampleCollection<T>
- {
- private T[] arr = new T[100];
- public T this[int i]
- {
- get
- {
- return arr[i];
- }
- set
- {
- arr[i] = value;
- }
- }
- }
- class Program
- {
- static void Main(string[] args)
- {
- SampleCollection<string> stringCollection = new SampleCollection<string>();
- stringCollection[0] = "Hello, World";
- System.Console.WriteLine(stringCollection[0]);
- }
- }
.Net迭代器
- 迭代器
您只需提供一个迭代器,即可遍历类中的数据结构。当编译器检测到迭代器时,它将自动生成 IEnumerable 或 IEnumerable<T> 接口的 Current、MoveNext 和 Dispose 方法。
迭代器是可以返回相同类型的值的有序序列的一段代码。
迭代器可用作方法、运算符或 get 访问器的代码体。
迭代器代码使用 yield return 语句依次返回每个元素。yield break 将终止迭代。
可以在类中实现多个迭代器。每个迭代器都必须像任何类成员一样有***的名称,并且可以在 foreach 语句中被客户端代码调用,如下所示:foreach(int x in SampleClass.Iterator2){}
迭代器的返回类型必须为 IEnumerable、IEnumerator、IEnumerable<T> 或 IEnumerator<T>。
- 代码示例
- public class DaysOfTheWeek : System.Collections.IEnumerable
- {
- string[] m_Days = { "Sun", "Mon", "Tue", "Wed", "Thr", "Fri", "Sat" };
- public System.Collections.IEnumerator GetEnumerator()
- {
- for (int i = 0; i < m_Days.Length; i++)
- {
- yield return m_Days[i];
- }
- }
- }
- class TestDaysOfTheWeek
- {
- static void Main()
- {
- DaysOfTheWeek week = new DaysOfTheWeek();
- foreach (string day in week)
- {
- System.Console.Write(day + " ");
- }
- }
- }
原文链接:http://www.cnblogs.com/liusuqi/archive/2013/06/05/3118268.html
http://www.cnblogs.com/liusuqi/archive/2013/06/06/3120390.html