basic_istream::tellg
Raporty bieżące odczytu pozycji w strumieniu.
pos_type tellg( );
Wartość zwracana
Bieżąca pozycja w strumieniu.
Uwagi
Jeśli awarii ma wartość FAŁSZ, funkcja Członkowskich zwraca rdbuf -> pubseekoff(0, cur, in).W przeciwnym razie zwraca pos_type(-1).
Przykład
// 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;
}
Wejście: basic_istream_tellg.txt
0123456789
Dane wyjściowe programu
0 0
1 1
Wymagania
Nagłówek: <istream>
Obszar nazw: std