basic_istream::tellg

Zeigt die aktuelle Leseposition im Stream.

pos_type tellg( );

Rückgabewert

Die aktuelle Position in dem Stream.

Hinweise

Wenn Fail falsch ist, gibt die Memberfunktion rdbuf > pubseekoff zurück (0, cur, in).Andernfalls gibt sie zurück pos_type(- 1).

Beispiel

// 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;
}

Eingabe: basic_istream_tellg.txt

0123456789

Programmausgabe

0 0
1 1

Anforderungen

Header: <istream>

Namespace: std

Siehe auch

Referenz

basic_istream Class

Programmierung der iostream-Headerdatei

iostreams Konventionen