文件读写

#include<iostream>

   

写文件

ofstream

追加模式

   

写文件

ifstream

   

   

#include <fstream>

   

fstream output;

output.open("file.txt", ios::app);

output << state_.mprset_.size() << endl;

output.close();

 

posted @ 2022-08-30 21:51  atomxing  阅读(16)  评论(0编辑  收藏  举报