다음을 통해 공유


basic_istream::peek

읽을 다음 문자를 반환 합니다.

int_type peek( );

반환 값

읽을 다음 문자입니다.

설명

서식이 지정 되지 않은 입력된 함수 요소를 가능 하면 반환 하는 경우 추출 rdbuf ->sgetc.그렇지 않으면, traits_type::eof.

예제

// basic_istream_peek.cpp
// compile with: /EHsc
#include <iostream>
using namespace std;

int main( ) 
{
   char c[10], c2;
   cout << "Type 'abcde': ";

   c2 = cin.peek( );
   cin.getline( &c[0], 9 );

   cout << c2 << " " << c << endl;
}
  abcde
  abcde
'abcde' 형식: abcde는 abcde

요구 사항

헤더: <istream>

네임 스페이스: std

참고 항목

참조

basic_istream Class

iostream 프로그래밍

iostreams 규칙