basic_istream::tellg
Informa a posição de leitura do atual no fluxo.
pos_type tellg( );
Valor de retorno
A posição atual no fluxo.
Comentários
Se falha for falso, a função de membro retorna rdbuf ->pubseekoff(0, cur, in). Caso contrário, retorna pos_type(- 1).
Exemplo
// basic_istream_tellg.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>
int main()
{
using namespace std;
ifstream file;
char c;
streamoff i;
file.open("basic_istream_tellg.txt");
i = file.tellg();
file >> c;
cout << c << " " << i << endl;
i = file.tellg();
file >> c;
cout << c << " " << i << endl;
}
Entrada: basic_istream_tellg.txt
0123456789
Saída de programa
0 0
1 1
Requisitos
istream <deCabeçalho: >
Namespace: std