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ファイルにデータを読み書きするという同じタスクを達成する以外の方法を提案できますか?