次の方法で共有


basic_ofstream::is_open

ファイルが開かれているかどうかを示します。

bool is_open( ) const;

戻り値

ファイルが開いているtrue、別の方法で false。

解説

このメンバー関数は rdbuf -> is_openを返します。

使用例

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

int main( ) 
{
   using namespace std;
   ifstream file;
   // Open and close with a basic_filebuf
   file.rdbuf( )->open( "basic_ofstream_is_open.txt", ios::in );
   file.close( );
   if (file.is_open())
      cout << "it's open" << endl;
   else
      cout << "it's closed" << endl;
}

出力

it's closed

必要条件

ヘッダー: <fstream>

名前空間: std

参照

関連項目

basic_ofstream Class

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

入出力ストリームの規則