共用方式為


basic_streambuf::sbumpc

讀取並傳回目前項目,移動資料流指標。

int_type sbumpc( );

傳回值

目前的項目。

備註

如果可讀取位置可用,成員函式傳回 traits_type::to_int_typegptr( *) 並加入輸入緩衝區的指標。 否則,會傳回 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

FakePre-75710631ef3a4309aa42abea06d157ab-7abbc699dc2746f5957dea94f6c676c8

需求

標題: <streambuf>

命名空間: std

請參閱

參考

basic_streambuf 類別

iostream 程式設計

iostreams 慣例