basic_ios::eof
Bir akışın sonuna ulaşıldı gösterir.
bool eof( ) const;
Dönüş Değeri
trueakışın sonuna ulaşıldı, false Aksi durumda.
Notlar
Üye işlevi döndürür true , rdstate & eofbit sıfır olur. eofbit hakkında daha fazla bilgi için, bkz. ios_base::iostate.
Örnek
// 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;
}
Örnek Çıktı
false
true
Gereksinimler
Başlık: <ios>
Namespace: std