次の方法で共有


istreambuf_iterator::operator*

逆参照する演算子は、ストリーム内の次の文字を返します。

CharType operator*( ) const;

戻り値

ストリーム内の次の文字。

使用例

// istreambuf_iterator_operator_deref.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;   //Put value of outpos equal to inpos
      ++inpos;
      ++outpos;
   }
}
  引数に戻ります。
  引数に戻ります。
文字列を入力します。とは、ストリームのバッファーの反復子と出力するように入力します (試行: 「私は、戻ります。」プログラムを終了するには、目的のみ) 繰り返し、キーストローク ctrl-Z ": 引数に戻ります。引数に戻ります。^Z

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

istreambuf_iterator Class

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