checked_array_iterator::base
Odzyskuje podstawowej iteratora z jego checked_array_iterator.
_Iterator base() const;
Uwagi
Aby uzyskać więcej informacji, zobacz Iteratory zaznaczone.
Przykład
// 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;
}
Wymagania
Nagłówek: <iterator>
Obszar nazw: stdext