共用方式為


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 , ' ' , '.' );
}
  有許多的點 doneSo

FakePre-7338535be8484513b68eea134a1e97d1-47db99ae8311473083fb6f63b1c8bdad

需求

標頭:<迭代器>

命名空間: std

請參閱

參考

istreambuf_iterator 類別

標準樣板程式庫