zoukankan      html  css  js  c++  java
  • 迭代器模式

    // 抽象聚合类
        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();
            }
        }
  • 相关阅读:
    centos7安装pycharm
    centos7 mysql数据库安装
    删除MySQL服务
    计组第三章预习
    攻防世界web新手练习区
    原码补码预习
    第一次总结
    第三章预习
    数据结构十进制数表示
    预习原码补码
  • 原文地址:https://www.cnblogs.com/gaocong/p/6824595.html
Copyright © 2011-2022 走看看