手记

使用yield返回IEnumber<T>集合

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

 

再次运行:

 

0人推荐
随时随地看视频
慕课网APP