fstream头文件文件问题
发布网友
发布时间:2024-01-22 21:46
我来回答
共2个回答
热心网友
时间:2024-03-01 02:50
应当都可以。
ofstream -- 输出文件流 class
fstream -- 输入/输出文件流 class
fstream filestr;
filestr.open ("test.txt", fstream::app);
第2个参数:
fstream::app 尾加文件
fstream::in 输入文件
fstream::out 输出文件
ofstream outfile;
outfile.open ("test.txt",ios_base::app);
app -- 输出文件,尾加
ate -- 打开时,文件位置定在文件尾
热心网友
时间:2024-03-01 02:50
注意定义文件流对象的参数
ofstream out("file.txt", ios::app) //app参数即尾接, 打开文件后再EOF前开始写入