加入下列宏定义:
#ifdef _DEBUG
#define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
#else
#define DEBUG_CLIENTBLOCK
#endif
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#ifdef _DEBUG
#define new DEBUG_CLIENTBLOCK
#endif
然后在main函数中调用下面的函数:
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF|_CRTDBG_LEAK_CHECK_DF);
执行后将在输出窗口出未释放的指针的位置。去下图:P和P1没有释放。
2017.7.1 补充:
,老是报如下错误:
error C2661: “CObject::operator new” : 没有重载函数接受 4 个参数
后来在链接地址这篇帖子的启发下,
将 #define new new(_NORMAL_BLOCK, __FILE__, __LINE__)
改成 #define new DEBUG_NEW
就可以了