Udostępnij za pośrednictwem


checked_array_iterator::operator

Zwraca odwołanie do elementu przesunięcie z elementu kierowane przez checked_array_iterator przez podaną liczbę pozycji.

reference operator[](
   difference_type_Off
) const;

Parametry

  • _Off
    Przesunięcie z checked_array_iterator adresu.

Wartość zwracana

Odwołanie do elementu przesunięcie.

Uwagi

Aby uzyskać więcej informacji, zobacz Iteratory zaznaczone.

Przykład

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

Wymagania

Nagłówek: <iterator>

Obszar nazw: stdext

Zobacz też

Informacje

checked_array_iterator Class

Standardowa biblioteka szablonu