码迷,mamicode.com
首页 > Windows程序 > 详细

C#中yield关键字的使用个人总结

时间:2014-11-05 16:57:13      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   使用   for   

C#中yield关键字的使用个人总结:

1.首先,yield必须与return或者break组合在一起才能使用。

2.其次,必须在循环体中使用。

3.必须在迭代器块代码中使用。

在foreach语句中,in 后面跟随的对象,必须是IEnumerable“对象”(注:事实上,在C#里,接口是没有实例化的对象。但是,我们是可以创建“接口类型”的变量。然后可以把“继承了该接口的类”的对象赋给该变量。通过接口的多态性,使用这个变量。如果把接口理解成类,就很好理解了:若BClass继承于AClass,对于对象(BClass)b, 计算b is AClass的结果是true)。

编译器检测到迭代器时,它将自动生成 IEnumerable 或IEnumerable<T> 接口的 CurrentMoveNext 和 Dispose 方法。意思是说,真正的迭代器是包含 CurrentMoveNext 和 Dispose 等方法的。

例子一:DaysOfTheWeek继承自IEnumerable,则类DaysOfTheWeek的对象week,就是一个IEnumerable“对象”,所以,foreach (string day in week)是可以遍历的。

public class DaysOfTheWeek : System.Collections.IEnumerable
{
    string[] m_Days = { "Sun", "Mon", "Tue", "Wed", "Thr", "Fri", "Sat" };

    public System.Collections.IEnumerator GetEnumerator()
    {
        for (int i = 0; i < m_Days.Length; i++)
        {
            yield return m_Days[i];
        }
    }
}

 

class TestDaysOfTheWeek
{
    static void Main()
    {
        // Create an instance of the collection class
        DaysOfTheWeek week = new DaysOfTheWeek();

        // Iterate with foreach
        foreach (string day in week)
        {
            System.Console.Write(day + " ");
        }
    }
}
例子二:
函数Power(int number, int exponent)返回的对象是IEnumerable“对象”,所以,foreach (int i in Power(2, 8))是可以遍历的。
// yield-example.cs
using System;
using System.Collections;
public class List
{
    public static IEnumerable Power(int number, int exponent)
    {
        int counter = 0;
        int result = 1;
        while (counter++ < exponent)
        {
            result = result * number;
            yield return result;
        }
    }

    static void Main()
    {
        // Display powers of 2 up to the exponent 8:
        foreach (int i in Power(2, 8))
        {
            Console.Write("{0} ", i);
        }
    }
}

总结:

使用yield是为了创建迭代器,以让foreach语句可以使用。return是返回并结束,而yield return是返回却不结束,循环依旧。

C#中yield关键字的使用个人总结

标签:style   blog   http   io   color   ar   os   使用   for   

原文地址:http://www.cnblogs.com/jmllc/p/4076633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!