array::iterator
一个迭代器类型的控制序列的。
typedef implementation-defined iterator;
备注
类型描述可用作一个随机访问迭代器。对于控件序列的对象。
示例
// std__array__array_iterator.cpp
// compile with: /EHsc /W4
#include <array>
#include <iostream>
typedef std::array<int, 4> MyArray;
int main()
{
MyArray c0 = {0, 1, 2, 3};
// display contents " 0 1 2 3"
std::cout << "it1:";
for ( MyArray::iterator it1 = c0.begin();
it1 != c0.end();
++it1 ) {
std::cout << " " << *it1;
}
std::cout << std::endl;
// display first element " 0"
MyArray::iterator it2 = c0.begin();
std::cout << "it2:";
std::cout << " " << *it2;
std::cout << std::endl;
return (0);
}
要求
标头: <array>
命名空间: std