1.输出流,判断文件是否成功打开
#include <fstream>
using namespace std;
void main(){
const char* p_filename = "data.txt";
ofstream fout;//也可以在bai声明时同时打du开文件 ofstream fout(p_filename);
fout.open(p_filename);//只接受const char* 的参zhi数
if(!fout){
cout<<"file open failed.\n";
exit(0);//程序dao退出
}
fout<<"file open success and now write something into it.";
fout.close();//记得关闭文件流zhuan
}
2.输出流,判断文件是否成功打开
ifstream类重载了!操作符,所以当我们如此使用的时候,是!操作符函数返回一个bool变量来标记是否成功。
ifstream fin("filename");
if (!fin)
{
cout << "fail to open the file" <<endl;
return -1;//或者抛出异常。
}
else
{
cout << "open the file successfully" << endl;
}