次の方法で共有


ostream_iterator::traits_type

反復子の文字セットの型を提供する型。

typedef Traits traits_type;

解説

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

使用例

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

int main( )
{
   using namespace std;

   // The following not OK, but are just the default values:
   typedef ostream_iterator<int>::char_type CHT1;
   typedef ostream_iterator<int>::traits_type CHTR1;

   // ostream_iterator for stream cout
   // with new line delimiter:
    ostream_iterator<int, CHT1, CHTR1> intOut ( cout , "\n" );

   // Standard iterator interface for writing
   // elements to the output stream:
   cout << "The integers written to output stream\n"
        << "by intOut are:" << endl;
   *intOut = 1;
   *intOut = 10;
   *intOut = 100;
}
  

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

ostream_iterator Class

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