c++工作寶貴經驗呀,我去。。。。

來源:互聯網
上載者:User
2. 常見執行階段錯誤2.1 terminate called after throwing an instance of 'std::bad_alloc'

下面這個錯誤,我的程式在資料量太大才出現的。分析了一下,確定以前遺留代碼中頻繁的使用 new 產生數組,再使用 delete[] 刪除。最後修改為聲明數組(我的程式只需要一個讀寫 buffer 區):

terminate called after throwing an instance of 'std::bad_alloc'  what():  std::bad_allocAborted
2.2 free(): invalid next size (fast)

不合理產生 malloc 的問題:

*** glibc detected *** ./p_main: free(): invalid next size (fast): 0x08cec800 ***

我的情況是,聲明一個 char 指標存放資料,未能考慮末尾的 '0' , 故 free 釋放出錯:

  tmpdir = (char *)malloc (strlen (dir) + 1 + 1);strcpy (tmpdir, dir);  if (tmpdir[strlen (tmpdir) - 1] != '/')    strcat (tmpdir, "/");


我的總結:線程中如果頻繁的使用malloc()即使正常的free(),這也是會出錯的,要不就是段錯誤,要不就是terminate called after throwing an instance of 'std::bad_alloc'等等一些詭異的錯誤,我去,一定不能夠頻繁的使用malloc()哦,記住哦。頻繁指的是:程式中頻繁的調malloc()2.寫檔案的時候,千萬不要寫string 到檔案裡面去阿,要不然呀,會高絲你的。哦。我去。法規的
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.