共用方式為


basic_streambuf::sgetc

沒有變更的位置傳回目前項目在資料流。

int_type sgetc( );

傳回值

目前的項目。

備註

如果可讀取位置可用,成員函式傳回 traits_type::*to_int_type(gptr)。 否則,會傳回 反向溢位

範例

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

int main( ) 
{
   using namespace std;
   ifstream myfile( "basic_streambuf_sgetc.txt", ios::in );

   char i = myfile.rdbuf( )->sgetc( );
   cout << i << endl;
   i = myfile.rdbuf( )->sgetc( );
   cout << i << endl;
}

輸入:basic_streambuf_sgetc.txt

testing

Output

t
t

需求

標題: <streambuf>

命名空間: std

請參閱

參考

basic_streambuf 類別

iostream 程式設計

iostreams 慣例