继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

使用yield返回IEnumber<T>集合

关注TA
已关注
手记
粉丝
获赞

yield是对一种复杂行为的简化,就是将一段代码简化为一种简单的形式。

先看一下常规的写法,下面例子中,把找出字符串阵列中,某些元素包含有某些字符的元素。

 

 class Bi    {        public string[] str { get; set; }        public IEnumerable<string> GetIncludeCharacterOfArray(string includeCharacter)        {            List<string> lst = new List<string>();            for (int i = 0; i < str.Length; i++)            {                if (str[i].Contains(includeCharacter))                {                    lst.Add(str[i]);                }            }            return lst;        }    }

Source Code

 

运行结果:

 

下面,我们使用yield来简化一下上面的方法:

 

 public IEnumerable<string> GetIncludeCharacterOfArrayWithYield(string includeCharacter)        {            for (int i = 0; i < str.Length; i++)            {                if (str[i].Contains(includeCharacter))                    yield                    return str[i];            }        }

Source Code

 

再次运行:

 

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP