Detecting and Isolating Memory Leaks Using Microsoft Visual C++
#ifdef _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include "crtdbg.h"
#define new new(_NORMAL_BLOCK, __FILE__, __LINE__)
#endif
main
{
// Enable run-time memory check for debug builds.
#if defined(DEBUG) | defined(_DEBUG)
_CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
#endif
}
MFC中一些用于调试的宏。
1. ASSERT(a < 1);
2. VERIFY(pWnd = GetDlgItem(IDC_MYEDIT));
3. TRACE("Name: %s/n", obj.name());
4. INFO("Name: %s/n", obj.name());
5. DBG(AfxMessageBox("I'm here!"));
6. BREAK();
补充,链接一是作者原始发布的版本,只需要添加 mmgr.cpp, mmgr.h, nommgr.h 三个文件到项目即可;改进版(非原作者),则需要添加更多的文件,使用没有链接一方便。
个人使用经验:一、在所有的.cpp文件均加入"#ifndef NDEBUG#include "mmgr.h"#endif",放置在包含文件之末,因为该库很容易与其它系统库冲突。
二、不要在DLL源文件中使用该库,会造成使用该DLL的项目无法正常使用该库。
三、若日志文件中显示??:??等未知位置的内存泄露,那么可以锁定是在.h中的指针未释放。不将mmgr.h包含在头文件中,也是因为容易造成冲突问题。