checked_array_iterator::operator++
Incrémente checked_array_iterator à l'élément.
checked_array_iterator& operator++();
checked_array_iterator<_Iterator> operator++(int);
Valeur de retour
Le premier opérateur retourne checked_array_iterator preincremented et le deuxième, l'opérateur de postincrement, retourne une copie d' checked_array_iteratorincrémenté.
Notes
Pour plus d'informations, consultez Itérateurs vérifiés.
Exemple
// 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;
}
Configuration requise
en-tête : <iterator>
stdext del'espace de noms :