2013年11月20日
摘要: 迭代器:迭代集合中的每一项,无需关心集合中的内容。实现迭代器的传统方式是使用迭代器模式,迭代器模式的示意图如下:具体代码如下: class Person { public string Name { get; set; } public int Age { get; set; } public Person(string name, int age) { this.Name = name; this.Age = age; } } class People:I... 阅读全文
posted @ 2013-11-20 20:45 Kelvin Xu 阅读(310) 评论(0) 推荐(0) 编辑