码迷,mamicode.com
首页 > 其他好文 > 详细

yield 递归

时间:2014-09-24 19:29:07      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   div   

简单例子:

public static System.Collections.Generic .IEnumerable<int> Power(int number, int exponent)
        {
            int result = 1;
            for (int i = 0; i < exponent; i++)
            {
                result = result * number;
                yield return result;
            }
        }
 var abc = Power(2, 8);

            foreach (int i in Power(2, 8))
            {
                Console.Write("{0} ", i);
            }

abc,输出结果是

2 4 8 16 32 64 128 256

 

http://msdn.microsoft.com/zh-cn/library/9k7k7cf0.aspx

 http://www.cnblogs.com/ldp615/archive/2011/10/07/can-you-find-the-error-in-foreach-extension-method.html

yield 递归

标签:style   blog   http   color   io   os   ar   for   div   

原文地址:http://www.cnblogs.com/hongdada/p/3991136.html

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