다음을 통해 공유


basic_ostream::put

문자를 스트림에 저장합니다.

basic_ostream<_Elem, _Tr>& put(
    char_type _Ch
);

매개 변수

  • _Ch
    문자입니다.

반환 값

Basic_ostream 개체에 대 한 참조입니다.

설명

요소의 서식이 지정 되지 않은 출력 함수 삽입 _Ch.반환 *이.

예제

// basic_ostream_put.cpp
// compile with: /EHsc
#include <iostream>

int main( ) 
{
   using namespace std;
   cout.put( 'v' );
   cout << endl;
   wcout.put( L'l' );
}
  

요구 사항

헤더: <ostream>

네임 스페이스: std

참고 항목

참조

basic_ostream Class

iostream 프로그래밍

iostreams 규칙