c++ list_iterator demo

#include <iostream>
#include <list>
using namespace std;

typedef list<int> IntegerList;
int main()
{
    IntegerList    intList;
    for (int i = 1; i <= 10; ++i)
       intList.push_back(i * 2);
    for (IntegerList::const_iterator ci = intList.begin(); ci != intList.end(); ++ci)
       cout << *ci << " " << endl;
    return 0;
}

 遍历器对各种运算符进行重载  

posted @ 2018-08-08 17:36  友哥  阅读(1626)  评论(0编辑  收藏  举报