Re: [請益] Detected memory leaks!的解決之道??

看板Programming作者 (wayfarer)時間18年前 (2006/08/23 10:54), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串2/5 (看更多)
在每個 *.cpp 的檔案中加入下面這四行,要加在你的 #include <...> 之後, 要不然會影響到那些include的header files。 //================================================== #ifdef _DEBUG #include <crtdbg.h> #define new new(_NORMAL_BLOCK ,__FILE__, __LINE__) #endif //================================================== 這樣在 Debug 模式run程式,最後那些沒被delete的 memory block, VC都會告訴你是在那個檔案的那一行沒被delete。 -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 222.250.127.47
文章代碼(AID): #14wyE3Ia (Programming)
文章代碼(AID): #14wyE3Ia (Programming)