checked_array_iterator::checked_array_iterator
构造从基础迭代器的一个默认值 checked_array_iterator 或 checked_array _iterator。
checked_array_iterator( );
checked_array_iterator(
ITerator ptr,
size_t size,
size_t index = 0
);
参数
ptr
对数组的指针。size
数组大小。index
(可选) 在数组的元素,初始化迭代器。默认情况下,将初始化为迭代器数组中的第一个元素。
备注
有关详细信息,请参阅经过检查的迭代器。
示例
// checked_array_iterators_ctor.cpp
// compile with: /EHsc
#include <iterator>
#include <iostream>
using namespace std;
using namespace stdext;
int main() {
int a[] = {0, 1, 2, 3, 4};
int b[5];
copy(a, a + 5, checked_array_iterator<int*>(b,5));
for (int i = 0 ; i < 5 ; i++)
cout << b[i] << " ";
cout << endl;
checked_array_iterator<int*> checked_output_iterator(b,5);
copy (a, a + 5, checked_output_iterator);
for (int i = 0 ; i < 5 ; i++)
cout << b[i] << " ";
cout << endl;
checked_array_iterator<int*> checked_output_iterator2(b,5,3);
cout << *checked_output_iterator2 << endl;
}
要求
头文件: <iterator>
**命名空间:**stdext