IEnumerator<T> 인터페이스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
제네릭 컬렉션에 대한 간단한 반복을 지원합니다.
generic <typename T>
public interface class IEnumerator : IDisposable, System::Collections::IEnumerator
public interface IEnumerator<out T> : IDisposable, System.Collections.IEnumerator
public interface IEnumerator<T> : IDisposable, System.Collections.IEnumerator
type IEnumerator<'T> = interface
interface IEnumerator
interface IDisposable
type IEnumerator<'T> = interface
interface IDisposable
interface IEnumerator
Public Interface IEnumerator(Of Out T)
Implements IDisposable, IEnumerator
Public Interface IEnumerator(Of T)
Implements IDisposable, IEnumerator
형식 매개 변수
- T
열거할 개체의 형식입니다.
이 형식 매개 변수는 공변(Covariant)입니다. 즉, 지정한 형식이나 더 많게 파생된 모든 형식을 사용할 수 있습니다. 공변성(Covariance) 및 반공변성(Contravariance)에 대한 자세한 내용은 제네릭의 공변성(Covariance) 및 반공변성(Contravariance)을 참조하세요.- 파생
- 구현
예제
다음 예제에서는 사용자 지정 개체의 컬렉션 클래스에 대 한 IEnumerator<T> 인터페이스의 구현을 보여줍니다. 사용자 지정 개체는 Box
형식의 인스턴스이며 컬렉션 클래스는 BoxCollection
. 이 코드 예제는 ICollection<T> 인터페이스에 제공된 더 큰 예제의 일부입니다.
// Defines the enumerator for the Boxes collection.
// (Some prefer this class nested in the collection class.)
public class BoxEnumerator : IEnumerator<Box>
{
private BoxCollection _collection;
private int curIndex;
private Box curBox;
public BoxEnumerator(BoxCollection collection)
{
_collection = collection;
curIndex = -1;
curBox = default(Box);
}
public bool MoveNext()
{
//Avoids going beyond the end of the collection.
if (++curIndex >= _collection.Count)
{
return false;
}
else
{
// Set current box to next item in collection.
curBox = _collection[curIndex];
}
return true;
}
public void Reset() { curIndex = -1; }
void IDisposable.Dispose() { }
public Box Current
{
get { return curBox; }
}
object IEnumerator.Current
{
get { return Current; }
}
}
' Defines the enumerator for the Boxes collection.
' (Some prefer this class nested in the collection class.)
Public Class BoxEnumerator
Implements IEnumerator(Of Box)
Private _collection As BoxCollection
Private curIndex As Integer
Private curBox As Box
Public Sub New(ByVal collection As BoxCollection)
MyBase.New()
_collection = collection
curIndex = -1
curBox = Nothing
End Sub
Private Property Box As Box
Public Function MoveNext() As Boolean _
Implements IEnumerator(Of Box).MoveNext
curIndex = curIndex + 1
If curIndex = _collection.Count Then
' Avoids going beyond the end of the collection.
Return False
Else
'Set current box to next item in collection.
curBox = _collection(curIndex)
End If
Return True
End Function
Public Sub Reset() _
Implements IEnumerator(Of Box).Reset
curIndex = -1
End Sub
Public Sub Dispose() _
Implements IEnumerator(Of Box).Dispose
End Sub
Public ReadOnly Property Current() As Box _
Implements IEnumerator(Of Box).Current
Get
If curBox Is Nothing Then
Throw New InvalidOperationException()
End If
Return curBox
End Get
End Property
Private ReadOnly Property Current1() As Object _
Implements IEnumerator.Current
Get
Return Me.Current
End Get
End Property
End Class
' Defines two boxes as equal if they have the same dimensions.
Public Class BoxSameDimensions
Inherits EqualityComparer(Of Box)
Public Overrides Function Equals(ByVal b1 As Box, ByVal b2 As Box) As Boolean
If b1.Height = b2.Height And b1.Length = b2.Length And b1.Width = b2.Width Then
Return True
Else
Return False
End If
End Function
Public Overrides Function GetHashCode(ByVal bx As Box) As Integer
Dim hCode As Integer = bx.Height ^ bx.Length ^ bx.Width
Return hCode.GetHashCode()
End Function
End Class
설명
IEnumerator<T> 모든 제네릭 열거자의 기본 인터페이스입니다.
C# 언어의 foreach
문(C++의for each
Visual Basic의 For Each
)은 열거자의 복잡성을 숨깁니다. 따라서 열거자를 직접 조작하는 대신 foreach
사용하는 것이 좋습니다.
열거자는 컬렉션의 데이터를 읽는 데 사용할 수 있지만 기본 컬렉션을 수정하는 데 사용할 수는 없습니다.
처음에는 열거자가 컬렉션의 첫 번째 요소 앞에 배치됩니다. 이 위치에서 Current 정의되지 않습니다. 따라서 Current값을 읽기 전에 MoveNext 호출하여 열거자를 컬렉션의 첫 번째 요소로 이동시켜야 합니다.
Current MoveNext 호출될 때까지 동일한 개체를 반환합니다. MoveNext Current 다음 요소로 설정합니다.
MoveNext 컬렉션의 끝을 통과하면 열거자가 컬렉션의 마지막 요소 다음 위치에 배치되고 MoveNextfalse
반환합니다. 열거자가 이 위치에 있으면 MoveNext 대한 후속 호출도 false
반환합니다.
MoveNext 마지막 호출이 false
반환되면 Current 정의되지 않습니다.
Current 컬렉션의 첫 번째 요소로 다시 설정할 수 없습니다. 대신 새 열거자 인스턴스를 만들어야 합니다.
COM 상호 운용성을 위해 Reset 메서드가 제공됩니다. 반드시 구현할 필요는 없습니다. 대신 구현자는 단순히 NotSupportedExceptionthrow할 수 있습니다. 그러나 이 작업을 수행하도록 선택하는 경우 호출자가 Reset 기능에 의존하지 않는지 확인해야 합니다.
요소 추가, 수정 또는 삭제와 같이 컬렉션이 변경되면 열거자의 동작이 정의되지 않습니다.
열거자는 컬렉션에 대한 단독 액세스 권한이 없습니다. 따라서 컬렉션을 열거하는 것은 본질적으로 스레드로부터 안전한 프로시저가 아닙니다. 열거 중 스레드 안전을 보장하기 위해 전체 열거형 중에 컬렉션을 잠글 수 있습니다. 읽기 및 쓰기를 위해 여러 스레드에서 컬렉션에 액세스할 수 있도록 하려면 고유한 동기화를 구현해야 합니다.
System.Collections.Generic 네임스페이스에 있는 컬렉션의 기본 구현은 동기화되지 않습니다.
구현자 참고
이 인터페이스를 구현하려면 비제네릭 IEnumerator 인터페이스를 구현해야 합니다.
MoveNext() 및 Reset() 메서드는 T
의존하지 않으며 비제네릭 인터페이스에만 나타납니다.
Current 속성은 두 인터페이스에 모두 표시되며 반환 형식이 다릅니다. 비제네릭 Current 속성을 명시적 인터페이스 구현으로 구현합니다. 이렇게 하면 비제네릭 인터페이스의 모든 소비자가 제네릭 인터페이스를 사용할 수 있습니다.
또한 IEnumerator<T>Dispose() 메서드를 구현해야 하는 IDisposable구현합니다. 이렇게 하면 다른 리소스를 사용할 때 데이터베이스 연결을 닫거나 파일 핸들 또는 유사한 작업을 해제할 수 있습니다. 삭제할 추가 리소스가 없는 경우 빈 Dispose() 구현을 제공합니다.
속성
Current |
열거자의 현재 위치에 있는 컬렉션의 요소를 가져옵니다. |
메서드
Dispose() |
관리되지 않는 리소스의 해제, 해제 또는 재설정과 관련된 애플리케이션 정의 작업을 수행합니다. (다음에서 상속됨 IDisposable) |
MoveNext() |
열거자를 컬렉션의 다음 요소로 진행합니다. (다음에서 상속됨 IEnumerator) |
Reset() |
열거자를 컬렉션의 첫 번째 요소 앞에 있는 초기 위치로 설정합니다. (다음에서 상속됨 IEnumerator) |
적용 대상
추가 정보
.NET