2020年12月10日

C#迭代器模式原理实现

摘要: 这里的yield相当于SpecialEnumerator方法。 List<int> list =new List<int>{1,2,3,4,5}; foreach(var item in list){} 分析:List中实现了GetEnumerator()的迭代器方法,foreach语法糖执行了Ge 阅读全文

posted @ 2020-12-10 14:46 维尔维尔 阅读(57) 评论(0) 推荐(0) 编辑

导航