作者xshane831 (Shane)
看板C_and_CPP
標題[問題] ofstream 開啟失敗
時間Sun Dec 21 11:16:10 2014
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
VS2010
問題(Question):
目前有一段程式,會重複計算並把結果存到一個txt
程式執行初期都可正常存出txt
但在大量計算約幾百次後,就無法再開啟檔案
(fp.open()後也不會有空白的txt被開啟)
請問可能是甚麼原因? 感謝!
程式碼(Code):(請善用置底文網頁, 記得排版)
char filename[]="Result.txt";
ofstream fp;
fp.open(filename, ios::out);
if(!fp)
fp.open(filename, ios::out);
if(fp)
{
fp << xxxxxx;
fp << endl;
}
fp.close();
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.36.45.98
※ 文章網址: http://www.ptt.cc/bbs/C_and_CPP/M.1419131773.A.ECB.html
推 EdisonX: 先查一下ofstream::clear是什麼意思? 12/21 11:25
→ EdisonX: 另一個open一定要有一個close,你的範例就… 12/21 11:25
→ xshane831: 謝謝edisonx 剛已加入fp.clear 不過還是有一樣的錯誤 12/21 11:49
→ xshane831: 我是加在clear之後 是否使用錯誤? 謝謝 12/21 11:50
→ xshane831: 更正 加在fp.close(); 後 12/21 11:56