checked_array_iterator::operator++
增加 checked_array_iterator 至下一個項目。
checked_array_iterator& operator++();
checked_array_iterator<_Iterator> operator++(int);
傳回值
第一個運算子會傳回 checked_array_iterator preincremented 第二, postincrement 運算子,傳回已加入的 checked_array_iterator的複本。
備註
如需詳細資訊,請參閱已檢查的迭代器。
範例
// checked_array_iterators_op_plus_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;
cout << *checked_output_iterator << endl;
checked_output_iterator++;
cout << *checked_output_iterator << endl;
}
需求
標頭:<迭代器>
**命名空間:**stdext