bool is_open() const;
概要
開いている状態であることの判定をする。
戻り値
例
#include <iostream>
#include <fstream>
int main()
{
std::ofstream fs("foo", std::ios_base::out);
if (fs.is_open()) {
std::cout << "opened" << std::endl;
}
}
出力
opened
バージョン
言語
- C++98