C#设计模式--迭代器模式(学习Learning hard设计模式笔记)
摘要:
/// <summary> /// 抽象聚合接口 /// </summary> public interface IListCollection { Iterator GetIterator(); } //迭代器抽象类 public interface Iterator { bool MoveNex 阅读全文
posted @ 2018-02-25 22:06 雪域凌晨 阅读(178) 评论(0) 推荐(0) 编辑