c++里, 如果2个程序用ofstream open同时打开同一个文件会怎样?
ofstreamoutfile;outfile.open("file.dat",ios::out|ios::trunc);如果一个程序打开了一个文件,另一个程序可以同时打...
ofstream outfile;
outfile.open("file.dat", ios::out | ios::trunc );
如果一个程序打开了一个文件,
另一个程序可以同时打开同一个文件吗?还是会打开失败 展开
outfile.open("file.dat", ios::out | ios::trunc );
如果一个程序打开了一个文件,
另一个程序可以同时打开同一个文件吗?还是会打开失败 展开
2个回答
2018-10-14 · 知道合伙人互联网行家
关注
展开全部
代码如下:
#include <fstream>
using namespace std;
void main(){
const char* p_filename = "data.txt";
ofstream fout;//也可以在声明时同时打开文件 ofstream fout(p_filename);
fout.open(p_filename);//只接受const char* 的参数
if(!fout){
cout<<"file open failed.\n";
exit(0);//程序退出
}
fout<<"file open success and now write something into it.";
fout.close();//记得关闭文件流
}
#include <fstream>
using namespace std;
void main(){
const char* p_filename = "data.txt";
ofstream fout;//也可以在声明时同时打开文件 ofstream fout(p_filename);
fout.open(p_filename);//只接受const char* 的参数
if(!fout){
cout<<"file open failed.\n";
exit(0);//程序退出
}
fout<<"file open success and now write something into it.";
fout.close();//记得关闭文件流
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询