checked_array_iterator::operator
Retourne une référence à un offset d'élément de l'élément traité par checked_array_iterator par un nombre spécifié de caractères.
reference operator[](
difference_type_Off
) const;
Paramètres
- _Off
l'offset de l'adresse d' checked_array_iterator .
Valeur de retour
La référence à l'offset 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;
}
Configuration requise
en-tête : <iterator>
stdext del'espace de noms :