0
我試圖用ofstream
將數據寫入到OMNET .txt文件++與iostream
以下和fstream
包括任何其他方式:比使用ofstream的寫數據用C爲.txt文件++
ofstream myfile;
myfile.open ("example.txt");
myfile << "Writing this to a file.\n";
myfile.close();
但OMNET ++不解決open
和close
的功能。
有人可以建議除ofstream
之外的其他任何方式來實現向C++中的.txt文件讀寫數據的相同任務嗎?
fopen/fprintf/fclose應該總是保存你的培根:-) – mvp
「但OMNET ++不能解析打開和關閉函數。」 - 你是什麼意思?編譯器錯誤? – 2013-01-14 10:05:36
fopen/fprint/fclose也可以在C++中使用,或者只能在C中使用它們? – user1921843