2013-01-14 82 views
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 ++不解決openclose的功能。

有人可以建議除ofstream之外的其他任何方式來實現向C++中的.txt文件讀寫數據的相同任務嗎?

+0

fopen/fprintf/fclose應該總是保存你的培根:-) – mvp

+1

「但OMNET ++不能解析打開和關閉函數。」 - 你是什麼意思?編譯器錯誤? – 2013-01-14 10:05:36

+0

fopen/fprint/fclose也可以在C++中使用,或者只能在C中使用它們? – user1921843

回答

4

將我的評論轉換爲答案。

ofstream(和所有其他標準庫類)在命名空間std中定義。您需要使用限定名稱(例如std::ofstream)才能訪問它們。

相關問題