当前位置: 移动技术网 > IT编程>软件设计>设计模式 > C#设计模式--迭代器模式(学习Learning hard设计模式笔记)

C#设计模式--迭代器模式(学习Learning hard设计模式笔记)

2018年02月26日  | 移动技术网IT编程  | 我要评论
/// <summary>
    /// 抽象聚合接口
    /// </summary>
    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();
        }
    }
View Code

原文地址 http://www.cnblogs.com/zhili/p/IteratorPattern.html

 

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网