次の方法で共有


basic_streambuf::sbumpc

ストリーム ポインターを移動する現在の要素の読み取りを返します。

int_type sbumpc( );

戻り値

現在の要素。

解説

読み取り位置が使用できる場合、メンバー関数は traits_type::to_int_type ( [Hz]gptr) とインクリメントを入力バッファーのポインター正方向返します。それ以外の場合は uflowを返します。

使用例

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

int main( ) 
{
   using namespace std;
   int i = 0;
   i = cin.rdbuf( )->sbumpc( );
   cout << i << endl;
}
  3
  3
3 51

必要条件

ヘッダー: <streambuf>

名前空間: std

参照

関連項目

basic_streambuf Class

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

入出力ストリームの規則