C++:ofstream ofile("文件",打开方式),这个”文件”是保存在哪呢,该文件不存在,会自动新建一个文件?
C++:ofstreamofile("文件",打开方式),这个”文件”是保存在哪呢,该文件不存在,会自动新建一个文件?...
C++:ofstream ofile("文件",打开方式),这个”文件”是保存在哪呢,该文件不存在,会自动新建一个文件?
展开
展开全部
”文件”中如果没有指定路径,则在该可执行文件相同的文件夹下,如果指定路径则在该路径下,如:
ofstream ofile("output.dat");
ofstream ofile("c:\\temp\\output.dat");
如果文件不存在,则一般新建一个文件。打开方式,如按二进制打开
ofstream ofile("output.dat", ios_base::binary);
如果追加方式打开,则:
ofstream ofile("output.dat", ios_base::app);
注意:ofstream 流在打开方式中已经默认了ios_base::out,故这个参数一般不必重复使用,如:
ofstream ofile("output.dat", ios_base::out);
早期的C++语言使用ios代替ios_base
ofstream ofile("output.dat");
ofstream ofile("c:\\temp\\output.dat");
如果文件不存在,则一般新建一个文件。打开方式,如按二进制打开
ofstream ofile("output.dat", ios_base::binary);
如果追加方式打开,则:
ofstream ofile("output.dat", ios_base::app);
注意:ofstream 流在打开方式中已经默认了ios_base::out,故这个参数一般不必重复使用,如:
ofstream ofile("output.dat", ios_base::out);
早期的C++语言使用ios代替ios_base
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询