HashSet<T>.Enumerator 结构

定义

枚举 HashSet<T> 对象的元素。

public: value class HashSet<T>::Enumerator : System::Collections::Generic::IEnumerator<T>
public struct HashSet<T>.Enumerator : System.Collections.Generic.IEnumerator<T>
[System.Serializable]
public struct HashSet<T>.Enumerator : System.Collections.Generic.IEnumerator<T>
type HashSet<'T>.Enumerator = struct
    interface IEnumerator<'T>
    interface IEnumerator
    interface IDisposable
[<System.Serializable>]
type HashSet<'T>.Enumerator = struct
    interface IEnumerator<'T>
    interface IDisposable
    interface IEnumerator
[<System.Serializable>]
type HashSet<'T>.Enumerator = struct
    interface IEnumerator<'T>
    interface IEnumerator
    interface IDisposable
Public Structure HashSet(Of T).Enumerator
Implements IEnumerator(Of T)

类型参数

T
继承
HashSet<T>.Enumerator
属性
实现

注解

foreach C++ 语言 (for each的语句, For Each Visual Basic) 隐藏枚举器的复杂性。 因此,建议使用 foreach,而不是直接操作枚举数。

枚举器可用于读取集合中的数据,但不能用于修改基础集合。

最初,枚举数定位在集合中第一个元素的前面。 在此位置,属性 Current 未定义。 因此,在读取值Current之前,必须调用MoveNext该方法,将枚举器提升到集合的第一个元素。

在调用 Current 之前,MoveNext 返回相同的对象。 MoveNextCurrent 设置为下一个元素。

如果 MoveNext 传递集合的末尾,则枚举器将定位在集合中的最后一个元素之后并 MoveNext 返回 false。 当枚举器处于此位置时,后续调用 MoveNext 也会返回 false。 如果返回false的最后一次调用MoveNextCurrent则为未定义。 不能再次设置为 Current 集合的第一个元素;必须改为创建新的枚举器对象。

只要集合保持不变,枚举器就仍有效。 如果对集合进行了更改(例如添加、修改或删除元素),则枚举器将不可恢复地失效,下次调用 MoveNextIEnumerator.Reset 引发该 InvalidOperationException调用。

枚举数没有对集合的独占访问权;因此,从头到尾对一个集合进行枚举在本质上不是一个线程安全的过程。 若要确保枚举过程中的线程安全性,可以在整个枚举过程中锁定集合。 若要允许多个线程访问集合以进行读写操作,则必须实现自己的同步。

System.Collections.Generic 命名空间中集合的默认实现是不同步的。

属性

Current

获取枚举数当前位置的元素。

方法

Dispose()

释放 HashSet<T>.Enumerator 对象使用的所有资源。

MoveNext()

将枚举器前进到 HashSet<T> 集合的下一个元素。

显式接口实现

IEnumerator.Current

获取枚举数当前位置的元素。

IEnumerator.Reset()

将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。

适用于