基于Visual Studio2010讲解C#4.0语法(4)--使用yield迭代器

 在yield迭代器块中用于向枚举数对象提供值或发出迭代结束信号。它的形式为下列之一:

yield return <expression>;
yield break;

yield 语句只能出现在 iterator 块中,该块可用作方法、运算符或访问器的体。这类方法、运算符或访问器的体受以下约束的控制:

  • 不允许不安全块。

  • 方法、运算符或访问器的参数不能是 refout

yield 语句不能出现在匿名方法中。有关更多信息,请参见 匿名方法(C# 编程指南)

当和 expression 一起使用时,yield return 语句不能出现在 catch 块中或含有一个或多个 catch 子句的 try 块中。

在下面的示例中,迭代器块(这里是方法 Power(int number, int power))中使用了 yield 语句。当调用 Power 方法时,它返回一个包含数字幂的可枚举对象。注意 Power 方法的返回类型是 IEnumerable(一种迭代器接口类型)。

 比如下面的例子:
public class List
{
    //using System.Collections;
    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);
        }
    }
}
/*
Output:
2 4 8 16
我们来看一个实例:
首先打开Visual Studio2010创建一个基于C#的ConsoleApplication工程Yield:
基于Visual Studio2010讲解C#4.0语法(4)--使用yield迭代器_第1张图片

然后打开Yield.cs文件加入下列代码:

using System;
using System.Collections.Generic;
using System.Text;

namespace Yield
{
    class Yield
    {
        public static class NumberList
        {
            // 创建一个整数数组
            public static int[] ints = { 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377 };

            // 定义一个只返回偶数的属性。
            public static IEnumerable<int> GetEven()
            {
                // 使用yield返回列表中的偶数
                foreach (int i in ints)
                    if (i % 2 == 0)
                        yield return i;
            }

            // 定义一个只返回奇数的属性。
            public static IEnumerable<int> GetOdd()
            {
                // 使用yield返回列表中的奇数
                foreach (int i in ints)
                    if (i % 2 == 1)
                        yield return i;
            }
        }

        static void Main(string[] args)
        {

            // 显示偶数:
            Console.WriteLine("Even numbers");
            foreach (int i in NumberList.GetEven())
                Console.WriteLine(i);

            // 显示奇数:
            Console.WriteLine("Odd numbers");
            foreach (int i in NumberList.GetOdd())
                Console.WriteLine(i);
            Console.Read();
        }
    }
}

按下F5开始调试,运行界面如下:

 基于Visual Studio2010讲解C#4.0语法(4)--使用yield迭代器_第2张图片


原文链接: http://blog.csdn.net/yincheng01/article/details/5583220

你可能感兴趣的:(基于Visual Studio2010讲解C#4.0语法(4)--使用yield迭代器)