다음을 통해 공유


ostream_iterator::char_type

A type that provides for the character type of the iterator.

typedef CharType char_type;

설명

The type is a synonym for the template parameter CharType.

예제

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

int main( )
{
   using namespace std;

   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 the output stream\n"
        << "by intOut are:" << endl;
   *intOut = 10;
   *intOut = 20;
   *intOut = 30;
}
  

요구 사항

헤더: <iterator>

네임스페이스: std

참고 항목

참조

ostream_iterator 클래스

표준 템플릿 라이브러리