array::const_iterator
受控序列的常量迭代器的类型。
typedef implementation-defined const_iterator;
备注
描述类型可以作为常数的随机访问迭代器。需要序列控制的对象。
示例
// std__array__array_const_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::const_iterator it1 = c0.begin();
it1 != c0.end();
++it1 ) {
std::cout << " " << *it1;
}
std::cout << std::endl;
// display first element " 0"
MyArray::const_iterator it2 = c0.begin();
std::cout << "it2:";
std::cout << " " << *it2;
std::cout << std::endl;
return (0);
}
要求
数组页眉: <>
命名空间: std