다음을 통해 공유


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

Output

it's closed

요구 사항

헤더: <fstream>

네임 스페이스: std

참고 항목

참조

basic_ofstream Class

iostream 프로그래밍

iostreams 규칙