次の方法で共有


istreambuf_iterator::char_type

ostreambuf_iteratorの文字型を提供する型。

typedef CharType char_type;

解説

この型は、テンプレート パラメーター CharTypeのシノニムです。

使用例

// istreambuf_iterator_char_type.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <iostream>
#include <algorithm>

int main( )
{
   using namespace std;

   typedef istreambuf_iterator<char>::char_type CHT1;
   typedef istreambuf_iterator<char>::traits_type CHTR1;

   cout << "(Try the example: 'So many dots to be done'\n"
        << " then an Enter key to insert into the output,\n"
        << " & use a ctrl-Z Enter key combination to exit): ";

   // istreambuf_iterator for input stream
   istreambuf_iterator< CHT1, CHTR1> charInBuf ( cin );
   ostreambuf_iterator<char> charOut ( cout );

   // Used in conjunction with replace_copy algorithm
   // to insert into output stream and replace spaces
   // with dot-separators
   replace_copy ( charInBuf , istreambuf_iterator<char>( ),
        charOut , ' ' , '.' );
}
  されるため、多くの点
  されるため、多くの点
を実行します (例: 「done と出力に挿入すると、18 ctrl Z を使用するであるため、多くの点は、Enter キー終了するキーの組み合わせを入力します) : 行われた So.many.dots.to.be.do ne の ^Z であるため、多くの点

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

istreambuf_iterator Class

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