Partager via


checked_array_iterator::operator+

Ajoute un offset à un itérateur et retourne un nouvel checked_array_iterator adressant l'élément inséré au nouveau décalage de l'offset.

checked_array_iterator<_Iterator> operator+(
   difference_type _Off
) const;

Paramètres

  • _Off
    l'offset à ajouter à checked_array_iterator.

Valeur de retour

checked_array_iterator adressant l'offset élément.

Notes

Pour plus d'informations, consultez Itérateurs vérifiés.

Exemple

// 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;
}
  

Configuration requise

en-tête : <iterator>

stdext del'espace de noms :

Voir aussi

Référence

checked_array_iterator Class

Modèles Standard