设计模式-》迭代器模式

例子

public interface ITerator<TSource> { TSource Current { get; } bool HasNext(); void MoveNext(); } public class ArrayIterator<TSource> : ITerator<TSource> { private TSource[] Sources; public ArrayIterator(TSource[] sources) { this.Sources = sources; this.index = 0; } private uint index; private TSource source; public TSource Current { get { return source; } } public bool HasNext() { return this.index < this.Sources.Length; } public void MoveNext() { this.source = this.Sources[index]; this.index++; } } public interface IAggregate<TSource> { ITerator<TSource> GetIterator(); } public class ArrayAggregate<TSource> : IAggregate<TSource> { private TSource[] Sources; public ArrayAggregate(TSource[] sources) { this.Sources = sources; } public ITerator<TSource> GetIterator() { return new ArrayIterator<TSource>(Sources); } } private static void CoreTest() { ArrayAggregate<string> arrayAggregate = new ArrayAggregate<string>(new string[] {"cxl", "张三", "李四", "王五"}); var iterator = arrayAggregate.GetIterator(); while (iterator.HasNext()) { iterator.MoveNext(); Console.WriteLine(iterator.Current + "排队买好了蛋炒饭"); } }

排队买蛋炒饭


__EOF__

本文作者icxldd
本文链接https://www.cnblogs.com/icxldd/p/15803882.html
关于博主:评论和私信会在第一时间回复。或者直接私信我。
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
声援博主:如果您觉得文章对您有帮助,可以点击文章右下角推荐一下。您的鼓励是博主的最大动力!
posted @   icxl  阅读(18)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示