basic_ostream

basic_ostream (출력 스트림)

std::basic_ostream은 문자 출력 스트림 클래스 템플릿이에요. << 연산자로 값을 써요.

출처: cppreference

본문

std::basic_ostream은 출력 스트림을 나타내는 클래스 템플릿이에요.

template< class CharT, class Traits = std::char_traits<CharT> >
class basic_ostream : virtual public std::basic_ios<CharT, Traits>;

삽입 연산자로 형식화된 출력을, put/write로 원시 출력을 처리해요.

더 알아보기 (Learn more)

cppreference