IEnumerator的实现,不使用' yield return'

时间:2014-07-22 05:23:49

标签: c# ienumerable yield-return ienumerator

我在C#中学习迭代器概念,正在试验代码,处理简单问题并尝试以不同方式实现。我试图在列表中显示所有条款,因为我尝试了不同的方法来获得结果。在下面的代码中,我使用了两个类ListIterator和ImplementList。

在ListIterator类中:我定义了一个HashSet,它使用IEnumerator来存储值。这里GetEnumerator()方法返回列表中的值。 GetEnumerator在ImplementList类(其他类)中实现。最后,列表显示在控制台中。

public class ListIterator
{ 
   public void DisplayList()
   {
    HashSet<int> myhashSet = new HashSet<int> { 30, 4, 27, 35, 96, 34};
    IEnumerator<int> IE = myhashSet.GetEnumerator();
    while (IE.MoveNext())
      {
        int x = IE.Current;
        Console.Write("{0} ", x);
      }
      Console.WriteLine();
    Console.ReadKey();
   }
}

在ImplementList类中:定义了GetEnumerator(),它使用yield return x返回列表。

public class ImplementList : IList<int>
  {
    private List<int> Mylist = new List<int>();
    public ImplementList() { }

    public void Add(int item) 
    { 
        Mylist.Add(item); 
    }

    public IEnumerator<int> GetEnumerator()
    {
      foreach (int x in Mylist)
        yield return x;
    }
  }

现在,我想在不使用yield return的情况下重写GetEnumerator()。它应该返回列表中的所有值。是否可以在IEnumerator中使用yield return来获取列表中的所有值

2 个答案:

答案 0 :(得分:5)

您可以使用内部列表MyList的Enumerator实现:

    public IEnumerator<int> GetEnumerator()
    {
      return MyList.GetEnumerator();
    }

或者您可以自己实现IEnumerator(来自MSDN):

public class People : IEnumerable
{
    private Person[] _people;
    public People(Person[] pArray)
    {
        _people = new Person[pArray.Length];

        for (int i = 0; i < pArray.Length; i++)
        {
            _people[i] = pArray[i];
        }
    }

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

    public PeopleEnum GetEnumerator()
    {
        return new PeopleEnum(_people);
    }
}

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();
            }
        }
    }
}

答案 1 :(得分:1)

这会将结果作为数组返回

return MyList.ToArray();

或者如果你想把它作为List返回,为什么不只是

return MyList;