• 迭代器模式


    // 抽象聚合类
        public interface IListCollection
        {
            Iterator GetIterator();
        }
    
        // 迭代器抽象类
        public interface Iterator
        {
            bool MoveNext();
            Object GetCurrent();
            void Next();
            void Reset();
        }
    
        // 具体聚合类
        public class ConcreteList : IListCollection
        {
            int[] collection;
            public ConcreteList()
            {
                collection = new int[] { 2, 4, 6, 8 };
            }
    
            public Iterator GetIterator()
            {
                return new ConcreteIterator(this);
            }
    
            public int Length
            {
                get { return collection.Length; }
            }
    
            public int GetElement(int index)
            {
                return collection[index];
            }
        }
    
        // 具体迭代器类
        public class ConcreteIterator : Iterator
        {
            // 迭代器要集合对象进行遍历操作,自然就需要引用集合对象
            private ConcreteList _list;
            private int _index;
    
            public ConcreteIterator(ConcreteList list)
            {
                _list = list;
                _index = 0;
            }
    
    
            public bool MoveNext()
            {
                if (_index < _list.Length)
                {
                    return true;
                }
                return false;
            }
    
            public Object GetCurrent()
            {
                return _list.GetElement(_index);
            }
    
            public void Reset()
            {
                _index = 0;
            }
    
            public void Next()
            {
                if (_index < _list.Length)
                {
                    _index++;
                }
                    
            }
        }
    
        // 客户端
        class Program
        {
            static void Main(string[] args)
            {
                Iterator iterator;
                IListCollection list = new ConcreteList();
                iterator = list.GetIterator();
    
                while (iterator.MoveNext())
                {
                    int i = (int)iterator.GetCurrent();
                    Console.WriteLine(i.ToString());
                    iterator.Next();
                }
    
                Console.Read();
            }
        }
  • 相关阅读:
    unix网络编程源码编译问题
    ubuntu15.04下安装docker
    hexo博客的相关配置
    hexo的jacman主题配置
    使用github和hexo搭建静态博客
    操作系统简单认识
    github for windows安装以及教程
    编译原理第五单元习题
    python3入门之列表和元组
    Python3入门之软件安装
  • 原文地址:https://www.cnblogs.com/gaocong/p/6824595.html
Copyright © 2020-2023  润新知