次の方法で共有


checked_array_iterator::operator--

直前の要素と checked_array_iterator をデクリメントします。

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

戻り値

一つ目の演算子は predecremented checked_array_iterator、2 番目の演算子を postdecrement、デクリメントされた checked_array_iteratorのコピーを返します。

解説

詳細については、「チェックを行う反復子」を参照してください。

使用例

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

標準テンプレート ライブラリ