iterator迭代器是可以指向容器中元素的东西,像指针但不是指针。
举个例子
#include
#include
using namespace std;
int main()
{
int a[]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
list name(a,a+10);
list::iterator it;
for (it = name.begin(); it != name.end(); ++it)
{
cout << *it << endl;
}
return 0;
}
C语言之 iterator迭代器
最新推荐文章于 2024-12-15 00:00:00 发布