Partager via


checked_array_iterator::operator[]

Retourne une référence à un décalage d'élément de l'élément traité par un checked_array_iterator par un nombre spécifié de positions.

reference operator[](
   difference_type_Off
) const;

Paramètres

  • _Off
    Décalage de l'adresse d'checked_array_iterator.

Valeur de retour

La référence au décalage d'élément.

Notes

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

Exemple

// checked_array_iterators_op_diff.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main() {
   using namespace std;   
   int V1[10];

   for (int i = 0; i < 10 ; i++)
      V1[i] = i;

   // Declare a difference type for a parameter
   stdext::checked_array_iterator<int*>::difference_type diff = 2;

   stdext::checked_array_iterator<int*> VChkIter(V1, 10);

   stdext::checked_array_iterator<int*>::reference refrpos = VChkIter [diff];

   cout << refrpos + 1 << endl;
}
3

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)