我尝试使用ofstream
将数据写入OMNET ++中的.txt文件,如下所示iostream
和fstream
:
ofstream myfile;
myfile.open ("example.txt");
myfile << "Writing this to a file.\n";
myfile.close();
但是OMNET ++没有解析open
和close
函数。
有人可以建议除ofstream
之外的任何方法来实现在C ++中读取和写入.txt文件的相同任务吗?
答案 0 :(得分:4)
将我的评论转化为答案。
ofstream
(以及所有其他标准库类)在名称空间std
中定义。您需要使用限定名称(例如std::ofstream
)来访问它们。