首页 > TAG信息列表 > CarsList

徒手撸设计模式-迭代器模式

概念 迭代器模式(Iterator Pattern)是 Java 和 .Net 编程环境中非常常用的设计模式。这种模式用于顺序访问集合对象的元素,不需要知道集合对象的底层表示。 迭代器模式属于行为型模式。 参考链接: https://www.runoob.com/design-pattern/iterator-pattern.html 代码案例 设计迭代器