如何实现IEnumerator <t>?</t>

时间:2013-08-07 13:24:45

标签: c# generics

此代码未编译,并且抛出以下错误:

  

“TestesInterfaces.MyCollection”类型已包含“当前”的定义

但是当我删除模棱两可的方法时,它会不断给出其他错误。

有人可以帮忙吗?

public class MyCollection<T> : IEnumerator<T>
{
    private T[] vector = new T[1000];
    private int actualIndex;

    public void Add(T elemento)
    {
        this.vector[vector.Length] = elemento;
    }

    public bool MoveNext()
    {
        actualIndex++;
        return (vector.Length > actualIndex);
    }

    public void Reset()
    {
        actualIndex = -1;
    }

    void IDisposable.Dispose() { }

    public Object Current
    {
        get
        {
            return Current;
        }
    }


    public T Current
    {
        get
        {
            try
            {
                T element = vector[actualIndex];
                return element;
            }
            catch (IndexOutOfRangeException e)
            {
                throw new InvalidOperationException(e.Message);
            }
        }
    }
}

3 个答案:

答案 0 :(得分:8)

您需要定义当前正在实施的接口。

Object IEnumerator.Current
{
    //
}

public T Current
{
    //
}

这样您的班级就有2个Current属性。但你可以访问它们。

MyCollection<string> col = new MyCollection<string>();
var ienumeratort = col.Current; //Uses IEnumerator<T>
var ienumerator = (IEnumerator)col.Current; //uses IEnumerator

答案 1 :(得分:8)

我认为你误解了IEnumerator<T>。通常,集合实现IEnumerable<T>,而不是IEnumerator<T>。你可以这样想:

  • 当一个类实现IEnumerable<T>时,它会声明“我是可以枚举的东西的集合。”
  • 当一个类实现IEnumerator<T>时,它表示“我是一个枚举某事的东西。”

集合实施IEnumerator<T>很少(也可能是错误的)。通过这样做,您将集合限制为单个枚举。如果您尝试在已经循环遍历集合的代码段中循环遍历集合,或者如果您尝试同时在多个线程上遍历集合,则无法执行此操作,因为您的集合本身正在存储枚举操作的状态。通常,集合(实现IEnumerable<T>)返回一个单独的对象(实现IEnumerator<T>),并且该单独的对象负责存储枚举操作的状态。因此,您可以拥有任意数量的并发或嵌套枚举,因为每个枚举操作都由不同的对象表示。

此外,为了使foreach语句生效,in关键字后面的对象必须实施IEnumerableIEnumerable<T>。如果对象仅实现IEnumeratorIEnumerator<T>

,则无效

我相信这是您正在寻找的代码:

public class MyCollection<T> : IEnumerable<T>
{
    private T[] vector = new T[1000];
    private int count;

    public void Add(T elemento)
    {
        this.vector[count++] = elemento;
    }

    public IEnumerator<T> GetEnumerator()
    {
        return vector.Take(count).GetEnumerator();
    }

    IEnumerator IEnumerable.GetEnumerator()
    {
        return GetEnumerator();
    }
}

答案 2 :(得分:1)

我认为从C#2.0开始,你有一个非常简单的方法来实现迭代器,编译器通过创建状态机在场景中做了很多繁重的工作。值得研究一下。话虽如此,在这种情况下,您的实现将如下所示:

    public class MyCollection<T>
    {
        private T[] vector = new T[1000];
        private int actualIndex;

        public void Add(T elemento)
        {
            this.vector[vector.Length] = elemento;
        }

        public IEnumerable<T> CreateEnumerable()
        {
          for (int index = 0; index < vector.Length; index++)
          {
            yield return vector[(index + actualIndex)];
          }
       }
   }

虽然我不确定actualIndex的用途 - 但我希望你明白这一点。

在正确初始化MyCollection之后,下面的片段看起来有点像消费者的观点:

MyCollection<int> mycoll = new MyCollection<int>();
            foreach (var num in mycoll.CreateEnumerable())
            {
                Console.WriteLine(num);
            }