array::const_iterator
用於受控制序列的常數迭代器類型。
typedef implementation-defined const_iterator;
備註
型別描述可以當做常數隨機存取 Iterator Base 受控制序列的物件。
範例
// 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