basic_streambuf::sgetc
Elemento atual de retorna sem alterar a posição no fluxo.
int_type sgetc( );
Valor de retorno
o elemento atual.
Comentários
Se uma posição de leitura está disponível, a função de membro retorna traits_type::to_int_type(*gptr).Caso contrário, retornará estouro negativo.
Exemplo
// 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;
}
Entrada: basic_streambuf_sgetctxt.
testing
Saída
t
t
Requisitos
Cabeçalho: <streambuf>
namespace: STD