次の方法で共有


basic_ios::eof

ストリームの末尾に到達されているかどうかを示します。

bool eof( ) const;

戻り値

ストリームの末尾に到達した場合true、別の方法で false。

解説

このメンバー関数は rdstate& eofbit が以外の場合 true を返します。eofbit の詳細については、「ios_base::iostate」を参照してください。

使用例

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

出力例

false
true

必要条件

ヘッダー: <ios>

名前空間: std

参照

関連項目

basic_ios Class

入出力ストリームのプログラミング

入出力ストリームの規則