StringCollection.GetEnumerator方法用于获取在StringCollection中进行迭代的StringEnumerator。
句法:
public System.Collections.Specialized.StringEnumerator GetEnumerator ();
返回值:该方法为StringCollection返回一个StringEnumerator。
下面的程序说明了上面讨论的方法的使用:
范例1:
// C# code to get an StringEnumerator
// that iterates through the StringCollection
using System;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// Adding elements in StringCollection
myCol.Add("A");
myCol.Add("B");
myCol.Add("C");
myCol.Add("D");
myCol.Add("E");
// taking an emumerator &
// using GetEnumerator method
StringEnumerator myenum = myCol.GetEnumerator();
// If MoveNext passes the end of the
// collection, the enumerator is positioned
// after the last element in the collection
// and MoveNext returns false.
while (myenum.MoveNext())
Console.WriteLine(myenum.Current);
}
}
输出:
A
B
C
D
E
范例2:
// C# code to get an StringEnumerator
// that iterates through the StringCollection
using System;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// Adding elements in StringCollection
myCol.Add("45");
myCol.Add("78");
myCol.Add("98");
myCol.Add("12");
myCol.Add("67");
// taking an emumerator
// & using GetEnumerator method
StringEnumerator myenum = myCol.GetEnumerator();
// If MoveNext passes the end of the
// collection, the enumerator is positioned
// after the last element in the collection
// and MoveNext returns false.
while (myenum.MoveNext())
Console.WriteLine(myenum.Current);
}
}
输出:
45
78
98
12
67
笔记:
- C#语言的foreach语句隐藏了枚举器的复杂性。因此,建议使用foreach ,而不是直接操作枚举器。
- 枚举数可用于读取集合中的数据,但不能用于修改基础集合。
- 在调用MoveNext或Reset之前,Current返回相同的对象。 MoveNext将Current设置为下一个元素。
- 只要集合保持不变,枚举数将保持有效。如果对集合进行了更改(例如添加,修改或删除元素),则枚举数将无法恢复,并且其行为是不确定的。
- 此方法是O(1)操作。
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.specialized.stringcollection.getenumerator?view=netframework-4.7.2