basic_streambuf::snextc
現在の要素を読み取り、次の要素を返します。
int_type snextc( );
戻り値
ストリームの次の要素。
解説
この関数がを返した場合 traits_type::eofメンバー関数の呼び出し sbumpc、traits_type::eof返します。それ以外の場合は sgetcを返します。
使用例
// basic_streambuf_snextc.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
int i = 0;
i = cin.rdbuf( )->snextc( );
// cout << ( int )char_traits<char>::eof << endl;
cout << i << endl;
}
aa
aa 97
必要条件
ヘッダー: <streambuf>
名前空間: std