共用方式為


checked_array_iterator::operator[]

以指定數目的位置從 checked_array_iterator 定址的項目傳回項目位移的參考。

reference operator[](
   difference_type_Off
) const;

參數

  • _Off
    checked_array_iterator 位址的位移。

傳回值

對項目位移的參考。

備註

如需詳細資訊,請參閱已檢查的迭代器

範例

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

需求

標頭:<迭代器>

**命名空間:**stdext

請參閱

參考

checked_array_iterator 類別

標準樣板程式庫