IEnumerator.Reset 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定列舉值至它的初始位置,這是在集合中第一個項目之前。
public:
void Reset();
public void Reset ();
abstract member Reset : unit -> unit
Public Sub Reset ()
例外狀況
建立列舉值之後,集合已修改。
列舉值不支援重設。
範例
下列程式代碼範例示範自定義集合介面的 IEnumerator 實作。 在此範例中, Reset 不會明確呼叫 ,但會實作以支援在Visual Basic) 中使用 foreach
(for each
。 此程式代碼範例是介面較大範例的 IEnumerator 一部分。
// When you implement IEnumerable, you must also implement IEnumerator.
public class PeopleEnum : IEnumerator
{
public Person[] _people;
// Enumerators are positioned before the first element
// until the first MoveNext() call.
int position = -1;
public PeopleEnum(Person[] list)
{
_people = list;
}
public bool MoveNext()
{
position++;
return (position < _people.Length);
}
public void Reset()
{
position = -1;
}
object IEnumerator.Current
{
get
{
return Current;
}
}
public Person Current
{
get
{
try
{
return _people[position];
}
catch (IndexOutOfRangeException)
{
throw new InvalidOperationException();
}
}
}
}
' When you implement IEnumerable, you must also implement IEnumerator.
Public Class PeopleEnum
Implements IEnumerator
Public _people() As Person
' Enumerators are positioned before the first element
' until the first MoveNext() call.
Dim position As Integer = -1
Public Sub New(ByVal list() As Person)
_people = list
End Sub
Public Function MoveNext() As Boolean Implements IEnumerator.MoveNext
position = position + 1
Return (position < _people.Length)
End Function
Public Sub Reset() Implements IEnumerator.Reset
position = -1
End Sub
Public ReadOnly Property Current() As Object Implements IEnumerator.Current
Get
Try
Return _people(position)
Catch ex As IndexOutOfRangeException
Throw New InvalidOperationException()
End Try
End Get
End Property
End Class
備註
如果對集合進行變更,例如新增、修改或刪除專案,則 的行為 Reset 為未定義。
系統會 Reset 為 COM 互操作性提供 方法。 它不一定需要實作;相反地,實作者可以直接擲回 NotSupportedException。
給實施者的注意事項
對的所有呼叫 Reset() 都必須為列舉值產生相同的狀態。 慣用的實作是在第一個專案之前,將列舉值移至集合的開頭。 如果自建立列舉值之後已修改集合,這會使列舉值失效,這與 MoveNext() 和 Current一致。