checked_array_iterator::operator++

增加 checked_array_iterator 为下一个元素。

checked_array_iterator& operator++();
checked_array_iterator<_Iterator> operator++(int);

返回值

第一个运算符返回preincremented checked_array_iterator,第二,postincrement运算符,返回增加的 checked_array_iterator的副本。

备注

有关更多信息,请参见 经过检查的迭代器

示例

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

int main() {
   using namespace stdext;
   using namespace std;
   int a[] = {6, 3, 77, 199, 222};
   int b[5];
   copy(a, a + 5, checked_array_iterator<int*>(b,5));

   checked_array_iterator<int*> checked_output_iterator(b,5);

   cout << *checked_output_iterator << endl;
   ++checked_output_iterator;
   cout << *checked_output_iterator << endl;
   checked_output_iterator++;
   cout << *checked_output_iterator << endl;
}
  

要求

标头: <iterator>

命名空间: stdext

请参见

参考

checked_array_iterator Class

标准模板库