checked_array_iterator::operator+
向迭代器的增加偏移并返回 checked_array_iterator 在新的偏移位置插入的元素的新地址。
checked_array_iterator<_Iterator> operator+(
difference_type _Off
) const;
参数
- _Off
将要添加的偏移量为 checked_array_iterator。
返回值
解决偏移元素的 checked_array_iterator。
备注
有关详细信息,请参阅经过检查的迭代器。
示例
// checked_array_iterators_op_plus.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main() {
using namespace stdext;
using namespace std;
int a[] = {6, 3, 77, 199, 222};
int b[5];
copy(a, a + 5, checked_array_iterator<int*>(b,5));
checked_array_iterator<int*> checked_output_iterator(b,5);
cout << *checked_output_iterator << endl;
checked_output_iterator = checked_output_iterator + 3;
cout << *checked_output_iterator << endl;
}
要求
头文件: <iterator>
**命名空间:**stdext