次の方法で共有


istreambuf_iterator::operator++

次の文字を入力ストリームから返すか、それをインクリメントする前にオブジェクトをコピーし、そのコピーを返します。

istreambuf_iterator<CharType, Traits>& operator++( );
istreambuf_iterator<CharType, Traits> operator++( int );

戻り値

istreambuf_iteratorへの istreambuf_iterator または参照。

解説

一つ目の演算子は、最終的に関連付けられている入力ストリームからの CharType 型のオブジェクトを抽出し、保存しようとします。2 番目の演算子はオブジェクトのコピーを作成し、オブジェクトをインクリメントし、コピーを返します。

使用例

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

int main( )
{
   using namespace std;

   cout << "Type string of characters & enter to output it,\n"
      << " with stream buffer iterators,(try: 'I'll be back.')\n"
      << " repeat as many times as desired,\n" 
      << " then keystroke ctrl-Z Enter to exit program: ";
   istreambuf_iterator<char> inpos ( cin );
   istreambuf_iterator<char> endpos;
   ostreambuf_iterator<char> outpos ( cout );
   while ( inpos != endpos )
   {
      *outpos = *inpos;
      ++inpos;   //Increment istreambuf_iterator
      ++outpos;
   }
}
  引数に戻ります。
  引数に戻ります。
文字列を入力します。とは、ストリームのバッファーの反復子と出力するように入力します (試行: 「私は、戻ります。」プログラムを終了するには、目的のみ) 繰り返し、キーストローク ctrl-Z ": 引数に戻ります。引数に戻ります。^Z

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

istreambuf_iterator Class

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