Freigeben über


basic_ios::eof

Gibt an, ob das Ende eines Streams erreicht wurde.

bool eof( ) const;

Rückgabewert

true, wenn das Ende des Streams erreicht wurde; andernfalls. false

Hinweise

Die Memberfunktion true gibt zurück, wenn rdstate& eofbit ungleich 0 (null) ist.Weitere Informationen zu eofbit finden Sie unter ios_base::iostate.

Beispiel

// basic_ios_eof.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>

using namespace std;

int main( int argc, char* argv[] ) 
{
   fstream   fs;
   int n = 1;
   fs.open( "basic_ios_eof.txt" );   // an empty file
   cout << boolalpha
   cout << fs.eof() << endl;
   fs >> n;   // Read the char in the file
   cout << fs.eof() << endl;
}

Beispielausgabe

false
true

Anforderungen

Header: <ios>

Namespace: std

Siehe auch

Referenz

basic_ios Class

Programmierung der iostream-Headerdatei

iostreams Konventionen