次の方法で共有


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

入出力ストリームのプログラミング

入出力ストリームの規則