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

【原】yield的最基本用法

时间:2015-04-26 15:05:06      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

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

namespace Itcast.Mall.ConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] strs = new string[] { "1", "2", "3" };
            IEnumerable<int> ints = GetInts(strs);
            foreach (var item in ints)
            {
                //测试,当item的值大于1后,下面GetInts里的foreach只会执行到这个对应的值,后面的就冻结,不执行了,节约资源;
                if (item > 1)
                {
                    break;
                }
                Console.WriteLine(item);
            }
            Console.ReadKey();
        }
        static IEnumerable<int> GetInts(string[] strs)
        {
            foreach (var item in strs)
            {
                Console.WriteLine(item.GetType());
                yield return Convert.ToInt32(item);
            }
        }
    }
}

 

【原】yield的最基本用法

标签:

原文地址:http://www.cnblogs.com/gebenhagen/p/4457728.html

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