Partager via


checked_array_iterator::operator+

Ajoute un décalage à un itérateur et retourne le nouvel checked_array_iterator traitant l'élément inséré à la nouvelle position décalée.

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'élément d'offset.

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>

Espace de noms : stdext

Voir aussi

Référence

checked_array_iterator, classe

Bibliothèque STL (Standard Template Library)