147

我知道如何实现非通用 IEnumerable,如下所示:

using System;
using System.Collections;

namespace ConsoleApplication33
{
    class Program
    {
        static void Main(string[] args)
        {
            MyObjects myObjects = new MyObjects();
            myObjects[0] = new MyObject() { Foo = "Hello", Bar = 1 };
            myObjects[1] = new MyObject() { Foo = "World", Bar = 2 };

            foreach (MyObject x in myObjects)
            {
                Console.WriteLine(x.Foo);
                Console.WriteLine(x.Bar);
            }

            Console.ReadLine();
        }
    }

    class MyObject
    {
        public string Foo { get; set; }
        public int Bar { get; set; }
    }

    class MyObjects : IEnumerable
    {
        ArrayList mylist = new ArrayList();

        public MyObject this[int index]
        {
            get { return (MyObject)mylist[index]; }
            set { mylist.Insert(index, value); }
        }

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

但是我也注意到 IEnumerable 有一个通用版本,IEnumerable<T>但我不知道如何实现它。

如果我添加using System.Collections.Generic;到我的 using 指令,然后更改:

class MyObjects : IEnumerable

到:

class MyObjects : IEnumerable<MyObject>

然后右键单击IEnumerable<MyObject>并选择Implement Interface => Implement Interface,Visual Studio 会帮助添加以下代码块:

IEnumerator<MyObject> IEnumerable<MyObject>.GetEnumerator()
{
    throw new NotImplementedException();
}

这次从方法中返回非泛型 IEnumerable 对象GetEnumerator();不起作用,那么我在这里放什么呢?当 CLI 在 foreach 循环期间尝试枚举我的数组时,它现在会忽略非泛型实现并直接使用泛型版本。

4

6 回答 6

171

如果您选择使用泛型集合,例如List<MyObject>代替ArrayList,您会发现List<MyObject>将提供可以使用的泛型和非泛型枚举数。

using System.Collections;

class MyObjects : IEnumerable<MyObject>
{
    List<MyObject> mylist = new List<MyObject>();

    public MyObject this[int index]  
    {  
        get { return mylist[index]; }  
        set { mylist.Insert(index, value); }  
    } 

    public IEnumerator<MyObject> GetEnumerator()
    {
        return mylist.GetEnumerator();
    }

    IEnumerator IEnumerable.GetEnumerator()
    {
        return this.GetEnumerator();
    }
}
于 2012-07-02T15:45:53.823 回答
82

您可能不希望显式实现IEnumerable<T>(这就是您所展示的)。

通常的模式是在 的显式实现中使用IEnumerable<T>'s :GetEnumeratorIEnumerable

class FooCollection : IEnumerable<Foo>, IEnumerable
{
    SomeCollection<Foo> foos;

    // Explicit for IEnumerable because weakly typed collections are Bad
    System.Collections.IEnumerator IEnumerable.GetEnumerator()
    {
        // uses the strongly typed IEnumerable<T> implementation
        return this.GetEnumerator();
    }

    // Normal implementation for IEnumerable<T>
    IEnumerator<Foo> GetEnumerator()
    {
        foreach (Foo foo in this.foos)
        {
            yield return foo;
            //nb: if SomeCollection is not strongly-typed use a cast:
            // yield return (Foo)foo;
            // Or better yet, switch to an internal collection which is
            // strongly-typed. Such as List<T> or T[], your choice.
        }

        // or, as pointed out: return this.foos.GetEnumerator();
    }
}
于 2012-07-02T15:41:23.267 回答
25

你为什么要手动做?yield return自动化处理迭代器的整个过程。(我也在我的博客上写过,包括查看编译器生成的代码)。

如果你真的想自己做,你也必须返回一个通用枚举器。您将无法再使用 a ,ArrayList因为那是非通用的。改为a List<MyObject>。这当然假设您的集合中只有类型MyObject(或派生类型)的对象。

于 2012-07-02T15:37:40.223 回答
5

如果您使用泛型,请使用 List 而不是 ArrayList。List 正是您需要的 GetEnumerator 方法。

List<MyObject> myList = new List<MyObject>();
于 2012-07-02T15:42:15.283 回答
0

将 mylist 变成List<MyObject>, 是一种选择

于 2012-07-02T15:40:12.627 回答
0

请注意,IEnumerable<T>allready 已由另一种方法实现是从作为基类(文档System.Collections)派生您的类:MyObjectsSystem.Collections

System.Collections:提供泛型集合的基类。

稍后我们可以自己实现来覆盖虚拟System.Collections方法以提供自定义行为(仅适用于ClearItems, InsertItem, RemoveItem, 以及SetItem,EqualsGetHashCodefrom ToStringObject。不像List<T>which 不是为了易于扩展而设计的。

例子:

public class FooCollection : System.Collections<Foo>
{
    //...
    protected override void InsertItem(int index, Foo newItem)
    {
        base.InsertItem(index, newItem);     
        Console.Write("An item was successfully inserted to MyCollection!");
    }
}

public static void Main()
{
    FooCollection fooCollection = new FooCollection();
    fooCollection.Add(new Foo()); //OUTPUT: An item was successfully inserted to FooCollection!
}

请注意,collection仅在需要自定义收集行为的情况下才推荐使用,这种情况很少发生。见用法

于 2018-09-27T20:11:18.573 回答