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

LINQ编程技术内幕 通用部分 学习

时间:2017-04-03 23:56:27      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:simple   console   技术分享   编译   pen   sim   com   work   导致   

通过关键字词组yield return,.Net Framework(从2.0开始)会为我们生成一个状态机.状态机实际上就是一个可枚举的类型化集合

理解yield return的工作方式

  关键字词组yield return是迭代器模式(Iterator Pattern)的一种实现,能够将本身不是可迭代集合的对象做成可迭代集合

技术分享
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Text;
 4 
 5 
 6 namespace SimpleYieldReturn {
 7     class Program {
 8         static void Main(string[] args) {
 9 
10             foreach(int i in GetEvents()) {
11                 Console.WriteLine(i);
12             }
13             Console.Read();
14         }
15 
16         public static IEnumerable<int> GetEvents() {
17             var integers = new[] { 1,2,3,4,5,6,7,8 };
18             foreach(int i in integers) {
19                 if(i % 2 == 0) {
20                     yield return i;
21                 }
22             }
23         }
24     }
25 
26 }
SimpleYieldReturn

GetEvents被当作集合来用,yield return导致编译器自动生成了可枚举类

技术分享

技术分享

LINQ编程技术内幕 通用部分 学习

标签:simple   console   技术分享   编译   pen   sim   com   work   导致   

原文地址:http://www.cnblogs.com/revoid/p/6663922.html

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