共用方式為


checked_array_iterator::base

從其 checked_array_iterator 復原基本的迭代器。

_Iterator base() const;

備註

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

範例

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

int main() {
   using namespace std;

   int V1[10];

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

   int* bpos;

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

   bpos = rpos.base ( );
   cout << "The iterator underlying rpos is bpos & it points to: " 
        << *bpos << "." << endl;
}
  

需求

標頭:<迭代器>

**命名空間:**stdext

請參閱

參考

checked_array_iterator 類別

標準樣板程式庫