foreach和IEnumerable+yield和IEnumerator

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了foreach和IEnumerable+yield和IEnumerator相关的知识,希望对你有一定的参考价值。

C#里,foreach可以算是个高一等级的循环,因为想要使用foreach必须实现IEnumberable,然后还需要在这个接口的唯一方法中,用yield return返回元素,才能达到foreach的循环效果。

 class MyList : IEnumerable
 {
     string[] arr = new string[] { "a", "b", "c" };
     public IEnumerator GetEnumerator()
     {
         for (var i = 0; i < arr.Length; i++)
         {
             yield return arr[i];
         }
     }
 }

然后直接调用

var myEnumerable = new MyList();
foreach (var e in myEnumerable)
{
    WriteLine(e);
}


如果我们剥离一层,把foreach和IEnumberable剥离了,看看会是什么样的效果,这次,不去实现IEnumerable,只是定义了一个返回IEnumberator的方法,用yield返回

class Itmes
{
    string[] arr = new string[] { "a", "b", "c" };
    public IEnumerator GetItem()
    {
        for (var i = 0; i < arr.Length; i++)
        {
            yield return arr[i];
        }
    }
}

同样在调用的时间,没有foreach,为了更清楚的看清逻辑,这里换成了while对IEnumerator的操作,yield return后,返回的类型被封装在了IEnumerator中。如果通过获取当前值用Current,后移索引值用MoveNext,以方便来取下一个元素的值,也就是说,真正实现了控制取值的效果。

var item = new Itmes().GetItem();
while (item != null && item.MoveNext())
{
    WriteLine(item.Current);
}           

至于IEnumberable的作用,就是可以把一个对象,置于foreach语法中,这个对象看上去更像一个集合序列了:foreach (var e in myEnumerable)中的 myEnumberable就是这个集合序列,但本质上元素是在string[]中放着。

以上是关于foreach和IEnumerable+yield和IEnumerator的主要内容,如果未能解决你的问题,请参考以下文章

c#yield,IEnumerable,IEnumerator

C# 使用IEnumerable,yield 返回结果,同时使用foreach时,在循环内修改变量的值无效

GetEnumerator();yield

如何在 C# 中使用 yield

yield关键字

IEnumable和yield