码迷,mamicode.com
首页 > 其他好文 > 详细

迭代器模式

时间:2015-05-28 00:30:32      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

1】什么是迭代器模式?

【2】迭代器模式代码示例:

代码示例:
#include <iostream>
#include <string>
using namespace std;

class Iterator;

class Aggregate
{
public:
    virtual Iterator *createIterator() = 0;
};

class Iterator
{
public:
    virtual void first() = 0;
    virtual void next() = 0;
    virtual bool isDone() = 0;
};

class ConcreteAggregate : public Iterator
{
public:
    void first()
    {}
    void next()
    {}
    bool isDone()
    {}
};

int main()
{
    return 0;
}

http://www.cnblogs.com/Braveliu/p/3950137.html

迭代器模式

标签:

原文地址:http://www.cnblogs.com/leijiangtao/p/4534574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!