晚上好,各位。今天结合书中所讲和MSDN所查,聊下yield关键字,它是我们简化迭代器的关键。
如果你在语句中使用了yield关键字,则意味着它在其中出现的方法、运算符或get访问器是迭代器,通过使用yield定义迭代器,可在实现自定义集合类型的IEnumerable和IEnumerator模式时无需显示类(保留枚举状态类),使用yield有两种形式,如下
yield return 表达式
yield break
先说明一下yield return语句,每一次返回一个元素。通过foreach语句或LINQ查询来使用迭代器方法。foreach循环的每次迭代都会调用迭代器方法,会保存当前返回的状态。
static void Main(string[] args)
{
foreach (int i in GetValues())
{
Console.WriteLine(i);
}
Console.ReadKey();
} static IEnumerable<int> GetValues()
{
yield return ;
yield return ;
yield return ;
}
不能将yield return语句放在try-catch之中,但可以把它放在try-finally之中。yield return有两个特点:1.返回类型必须是IEnumerable、IEnumerator、IEnumerator<T>、IEnumerable<T>.2.不能使用ref和out修饰符。在匿名方法和不安全代码中不能包含yield return和yield break。下面我们使用yield return来简化上一篇中对Student的迭代,重新个性了Queue<T>这个泛型类,如下
class Queue<T> : IEnumerable<T> where T : class
{
public List<T> objects = new List<T>();
int startPoint = ;
public Queue(List<T> list)
{
objects = list;
} //实现从IEnumerable中的GetEnumerator方法
/*
个人觉得这个方法在迭代中只会调用一次,不然每次都返回一个新的QueueIterator<T>对象,位置记录都会重置为-1
*/
public IEnumerator<T> GetEnumerator()
{
//return new QueueIterator<T>(this);
for (int index = ; index < objects.Count; index++)
{ yield return objects[(index + startPoint) % objects.Count];
}
} IEnumerator IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
}
代码到了yield return时,返回objects中一个合适的元素,并保存当前的状态,等下一次调用时从记数的位置开始。在使用程序中,如下,和原先一样。
List<Student> list = new List<Student> {
new Student("СA"),
new Student("СB"),
new Student("СC"),
new Student("СD"),
new Student("СE")
};
ConsoleDemo.Chapter6.Queue<Student> lq = new Chapter6.Queue<Student>(list); foreach (var obj in lq)
{
obj.SayName();
}
可以看到结果都是迭代的打印每一个元素的名字。在来说下return break,从break中可以看中,是跳出,那意思就应该上跳出迭代,如
class Program
{
static void Main(string[] args)
{ foreach (int i in GetValues())
{
Console.WriteLine(i);
}
Console.ReadKey();
} static IEnumerable<int> GetValues()
{
yield return ;
yield return ;
yield break;
yield return ;
}
}
到了yield return 2时,下一语句是yield break,则在控制台只会打印1,2,因为在打印3之前就使用yield break跳出迭代了。
下面我们使用一个实际点的读文件的例子。新建一个文本demo.txt,内容如下
代码如下
class Program
{
static void Main(string[] args)
{
foreach(var line in ReadLines("./demo.txt"))
{
Console.WriteLine(line);
}
Console.ReadKey();
} static IEnumerable<string> ReadLines(string path)
{
string line;
TextReader tr = File.OpenText(path);
while ((line = tr.ReadLine()) != null)
{
yield return line;
}
}
}
当然其实File中的表态方法是有ReadLines方法的,返回的也是IEnumerable<string>,看来我们是多此一举了,不过也不错,知道了一些yield的使用,原理的那些真心不敢写,写了自己也看不懂,希望以后能用自己组织语言,解译那些原理。
请斧正。