Partilhar via


basic_streambuf::sgetc

Elemento atual do retorna sem alterar a posição do fluxo.

int_type sgetc( );

Valor de retorno

O elemento atual.

Comentários

Se uma posição de leitura estiver disponível, a função de membro retorna traits_type::to_int_type(*gptr). Caso contrário, retorna 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_sgetc.txt

testing

Saída

t
t

Requisitos

streambuf <deCabeçalho: >

Namespace: std

Consulte também

Referência

Classe basic_streambuf

Programação iostream

Convenções iostreams